Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: Source/core/page/Settings.h

Issue 17569013: Remove unused includes from core/inspector, core/loader and core/page (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserved. 2 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2011, 2012 Apple Inc. All rights reserved.
3 * (C) 2006 Graham Dennis (graham.dennis@gmail.com) 3 * (C) 2006 Graham Dennis (graham.dennis@gmail.com)
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 18 matching lines...) Expand all
29 29
30 #include "SettingsMacros.h" 30 #include "SettingsMacros.h"
31 #include "core/editing/EditingBehaviorTypes.h" 31 #include "core/editing/EditingBehaviorTypes.h"
32 #include "core/platform/Timer.h" 32 #include "core/platform/Timer.h"
33 #include "core/platform/graphics/FontRenderingMode.h" 33 #include "core/platform/graphics/FontRenderingMode.h"
34 #include "core/platform/graphics/IntSize.h" 34 #include "core/platform/graphics/IntSize.h"
35 #include "weborigin/KURL.h" 35 #include "weborigin/KURL.h"
36 #include "wtf/HashMap.h" 36 #include "wtf/HashMap.h"
37 #include "wtf/text/AtomicString.h" 37 #include "wtf/text/AtomicString.h"
38 #include "wtf/text/AtomicStringHash.h" 38 #include "wtf/text/AtomicStringHash.h"
39 #include "wtf/unicode/Unicode.h"
40 39
41 namespace WebCore { 40 namespace WebCore {
42 41
43 class Page; 42 class Page;
44 43
45 enum EditableLinkBehavior { 44 enum EditableLinkBehavior {
46 EditableLinkDefaultBehavior, 45 EditableLinkDefaultBehavior,
47 EditableLinkAlwaysLive, 46 EditableLinkAlwaysLive,
48 EditableLinkOnlyLiveWithShiftKey, 47 EditableLinkOnlyLiveWithShiftKey,
49 EditableLinkLiveWhenNotFocused, 48 EditableLinkLiveWhenNotFocused,
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 Timer<Settings> m_setImageLoadingSettingsTimer; 193 Timer<Settings> m_setImageLoadingSettingsTimer;
195 void imageLoadingSettingsTimerFired(Timer<Settings>*); 194 void imageLoadingSettingsTimerFired(Timer<Settings>*);
196 195
197 static bool gMockScrollbarsEnabled; 196 static bool gMockScrollbarsEnabled;
198 static bool gUsesOverlayScrollbars; 197 static bool gUsesOverlayScrollbars;
199 }; 198 };
200 199
201 } // namespace WebCore 200 } // namespace WebCore
202 201
203 #endif // Settings_h 202 #endif // Settings_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698