Changeset 60962 in webkit


Ignore:
Timestamp:
Jun 10, 2010 10:10:12 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-06-10 Kwang Yul Seo <skyul@company100.net>

Reviewed by Kent Tamura.

Add ENABLE(DATABASE) guard for DatabaseAuthorizer.cpp
https://bugs.webkit.org/show_bug.cgi?id=40399

Build fix for ENABLE(DATABASE)=0.

  • storage/DatabaseAuthorizer.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r60961 r60962  
     12010-06-10  Kwang Yul Seo  <skyul@company100.net>
     2
     3        Reviewed by Kent Tamura.
     4
     5        Add ENABLE(DATABASE) guard for DatabaseAuthorizer.cpp
     6        https://bugs.webkit.org/show_bug.cgi?id=40399
     7
     8        Build fix for ENABLE(DATABASE)=0.
     9
     10        * storage/DatabaseAuthorizer.cpp:
     11
    1122010-06-10  Shu Chang  <chang.shu@nokia.com>
    213
  • trunk/WebCore/storage/DatabaseAuthorizer.cpp

    r60513 r60962  
    3030#include "DatabaseAuthorizer.h"
    3131
     32#if ENABLE(DATABASE)
    3233#include "Database.h"
    3334#include "PlatformString.h"
     
    414415
    415416} // namespace WebCore
     417
     418#endif // ENABLE(DATABASE)
Note: See TracChangeset for help on using the changeset viewer.