Changeset 93516 in webkit


Ignore:
Timestamp:
Aug 22, 2011 10:49:52 AM (13 years ago)
Author:
gyuyoung.kim@samsung.com
Message:

Fix build error when inspector is disabled.
https://bugs.webkit.org/show_bug.cgi?id=66644

Reviewed by Darin Adler.

  • inspector/InspectorDatabaseResource.h: Add ENABLE(INSPECTOR) macro.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r93514 r93516  
     12011-08-22  Gyuyoung Kim  <gyuyoung.kim@samsung.com>
     2
     3        Fix build error when inspector is disabled.
     4        https://bugs.webkit.org/show_bug.cgi?id=66644
     5
     6        Reviewed by Darin Adler.
     7
     8        * inspector/InspectorDatabaseResource.h: Add ENABLE(INSPECTOR) macro.
     9
    1102011-08-22  Abhishek Arya  <inferno@chromium.org>
    211
  • trunk/Source/WebCore/inspector/InspectorDatabaseResource.h

    r83841 r93516  
    3232#define InspectorDatabaseResource_h
    3333
    34 #if ENABLE(DATABASE)
     34#if ENABLE(DATABASE) && ENABLE(INSPECTOR)
    3535#include "InspectorFrontend.h"
    3636#include "PlatformString.h"
Note: See TracChangeset for help on using the changeset viewer.