Changeset 168684 in webkit


Ignore:
Timestamp:
May 13, 2014 9:26:16 AM (10 years ago)
Author:
Darin Adler
Message:

Try to fix the !ENABLE(ICONDATABASE) build

  • loader/icon/IconDatabase.h: Include WTFString.h.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r168683 r168684  
     12014-05-13  Darin Adler  <darin@apple.com>
     2
     3        Try to fix the !ENABLE(ICONDATABASE) build
     4
     5        * loader/icon/IconDatabase.h: Include WTFString.h.
     6
    172014-05-13  Carlos Garcia Campos  <cgarcia@igalia.com>
    28
  • trunk/Source/WebCore/loader/icon/IconDatabase.h

    r168680 r168684  
    11/*
    2  * Copyright (C) 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
     2 * Copyright (C) 2006, 2007, 2008, 2009, 2014 Apple Inc. All rights reserved.
    33 * Copyright (C) 2007 Justin Haygood (jhaygood@reaktix.com)
    44 *
     
    2929
    3030#include "IconDatabaseBase.h"
     31#include <wtf/text/WTFString.h>
    3132
    3233#if ENABLE(ICONDATABASE)
     
    4950    static void allowDatabaseCleanup() { }
    5051    static void checkIntegrityBeforeOpening() { }
    51     static String defaultDatabaseFilename() { return "WebpageIcons.db"; }
     52
     53    // FIXME: Is it really helpful to return a filename here rather than just the null string?
     54    static String defaultDatabaseFilename() { return ASCIILiteral("WebpageIcons.db"); }
    5255};
    5356
Note: See TracChangeset for help on using the changeset viewer.