diff options
author | Steve Block <steveblock@google.com> | 2011-06-08 04:19:03 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-06-08 04:19:03 -0700 |
commit | e710a8cbca96899e08ee0d427bcd8968cbcec9f0 (patch) | |
tree | 0665199d498b07c7f784cfc762373a7b66abb6cc /Source/WebCore | |
parent | 2281d6c3134384e2ba143f406de90be46d8e887f (diff) | |
parent | 3d1195ca6a380e5af16e3a505a007369cf18a4db (diff) | |
download | external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.zip external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.tar.gz external_webkit-e710a8cbca96899e08ee0d427bcd8968cbcec9f0.tar.bz2 |
Merge "Fix some include guards in Android files"
Diffstat (limited to 'Source/WebCore')
3 files changed, 8 insertions, 8 deletions
diff --git a/Source/WebCore/platform/graphics/android/FontPlatformData.h b/Source/WebCore/platform/graphics/android/FontPlatformData.h index ba30efe..498db47 100644 --- a/Source/WebCore/platform/graphics/android/FontPlatformData.h +++ b/Source/WebCore/platform/graphics/android/FontPlatformData.h @@ -27,8 +27,8 @@ // This file is part of the internal font implementation. It should not be included by anyone other than // FontMac.cpp, FontWin.cpp and Font.cpp. -#ifndef FontPlatformData_H -#define FontPlatformData_H +#ifndef FontPlatformData_h +#define FontPlatformData_h #include "FontOrientation.h" #include <wtf/text/StringImpl.h> diff --git a/Source/WebCore/platform/graphics/android/PerformanceMonitor.h b/Source/WebCore/platform/graphics/android/PerformanceMonitor.h index 4c3afd1..f4aaa92 100644 --- a/Source/WebCore/platform/graphics/android/PerformanceMonitor.h +++ b/Source/WebCore/platform/graphics/android/PerformanceMonitor.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef PERFORMANCEMONITOR_H_ -#define PERFORMANCEMONITOR_H_ +#ifndef PerformanceMonitor_h +#define PerformanceMonitor_h #include "config.h" @@ -55,4 +55,4 @@ private: } -#endif /* PERFORMANCEMONITOR_H_ */ +#endif // PerformanceMonitor_h diff --git a/Source/WebCore/plugins/android/PluginClient.h b/Source/WebCore/plugins/android/PluginClient.h index e3f7ddf..a8c69d3 100644 --- a/Source/WebCore/plugins/android/PluginClient.h +++ b/Source/WebCore/plugins/android/PluginClient.h @@ -23,8 +23,8 @@ * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef PLUGINCLIENT_H_ -#define PLUGINCLIENT_H_ +#ifndef PluginClient_h +#define PluginClient_h #include "PlatformString.h" #include <wtf/Vector.h> @@ -42,4 +42,4 @@ namespace android { }; } -#endif /* PLUGINCLIENT_H_ */ +#endif // PluginClient_h |