Changeset 61864 in webkit


Ignore:
Timestamp:
Jun 25, 2010 8:29:39 AM (14 years ago)
Author:
commit-queue@webkit.org
Message:

2010-06-25 Lyon Chen <liachen@rim.com>

Reviewed by Darin Adler.

InspectorCSSStore.cpp is not surrounded with ENABLE(INSPECTOR)
https://bugs.webkit.org/show_bug.cgi?id=41004

Surround InspectorCSSStore.cpp code with ENABLE(INSPECTOR) so it will not
break the build when INSPECTOR is disabled.

  • inspector/InspectorCSSStore.cpp:
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r61863 r61864  
     12010-06-25  Lyon Chen  <liachen@rim.com>
     2
     3        Reviewed by Darin Adler.
     4
     5        InspectorCSSStore.cpp is not surrounded with ENABLE(INSPECTOR)
     6        https://bugs.webkit.org/show_bug.cgi?id=41004
     7
     8        Surround InspectorCSSStore.cpp code with ENABLE(INSPECTOR) so it will not
     9        break the build when INSPECTOR is disabled.
     10
     11        * inspector/InspectorCSSStore.cpp:
     12
    1132010-06-25  No'am Rosenthal  <noam.rosenthal@nokia.com>
    214
  • trunk/WebCore/inspector/InspectorCSSStore.cpp

    r60443 r61864  
    2929#include "config.h"
    3030#include "InspectorCSSStore.h"
     31
     32#if ENABLE(INSPECTOR)
    3133
    3234#include "CSSMutableStyleDeclaration.h"
     
    221223
    222224} // namespace WebCore
     225
     226#endif // ENABLE(INSPECTOR)
Note: See TracChangeset for help on using the changeset viewer.