summaryrefslogtreecommitdiffstats
path: root/WebCore
diff options
context:
space:
mode:
authorKristian Monsen <kristianm@google.com>2011-01-10 16:27:55 +0000
committerKristian Monsen <kristianm@google.com>2011-01-10 16:27:55 +0000
commita71f9a9fbe6352a660bc2d18d8ad4fac7fa982b8 (patch)
treeba1c2208f26b5043fca96f88a62e9090b711a568 /WebCore
parentf81c672a4f5c06621000a6df0984cde689397d94 (diff)
downloadexternal_webkit-a71f9a9fbe6352a660bc2d18d8ad4fac7fa982b8.zip
external_webkit-a71f9a9fbe6352a660bc2d18d8ad4fac7fa982b8.tar.gz
external_webkit-a71f9a9fbe6352a660bc2d18d8ad4fac7fa982b8.tar.bz2
Fix a warning
Just changing the order so they are matched in the .h and .cpp Change-Id: I88afbdded260a389da2134ccdc7946f649b8db37
Diffstat (limited to 'WebCore')
-rw-r--r--WebCore/page/Settings.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/page/Settings.h b/WebCore/page/Settings.h
index 5b42e89..e4cccb1 100644
--- a/WebCore/page/Settings.h
+++ b/WebCore/page/Settings.h
@@ -555,12 +555,12 @@ namespace WebCore {
bool m_hyperlinkAuditingEnabled : 1;
bool m_crossOriginCheckInGetMatchedCSSRulesDisabled : 1;
-#ifdef ANDROID_PLUGINS
- bool m_pluginsOnDemand : 1;
-#endif
#if ENABLE(WEB_AUTOFILL)
bool m_autoFillEnabled: 1;
#endif
+#ifdef ANDROID_PLUGINS
+ bool m_pluginsOnDemand : 1;
+#endif
#if USE(SAFARI_THEME)
static bool gShouldPaintNativeControls;