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

Side by Side Diff: third_party/WebKit/Source/core/frame/Settings.h

Issue 1860743002: Add a flag to change when android's progress bar completes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: enum classes, et al. Created 4 years, 7 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 17 matching lines...) Expand all
28 #define Settings_h 28 #define Settings_h
29 29
30 #include "bindings/core/v8/V8CacheOptions.h" 30 #include "bindings/core/v8/V8CacheOptions.h"
31 #include "bindings/core/v8/V8CacheStrategiesForCacheStorage.h" 31 #include "bindings/core/v8/V8CacheStrategiesForCacheStorage.h"
32 #include "core/CoreExport.h" 32 #include "core/CoreExport.h"
33 #include "core/SettingsMacros.h" 33 #include "core/SettingsMacros.h"
34 #include "core/editing/EditingBehaviorTypes.h" 34 #include "core/editing/EditingBehaviorTypes.h"
35 #include "core/editing/SelectionStrategy.h" 35 #include "core/editing/SelectionStrategy.h"
36 #include "core/frame/SettingsDelegate.h" 36 #include "core/frame/SettingsDelegate.h"
37 #include "core/html/track/TextTrackKindUserPreference.h" 37 #include "core/html/track/TextTrackKindUserPreference.h"
38 #include "core/loader/FrameLoaderTypes.h"
38 #include "platform/Timer.h" 39 #include "platform/Timer.h"
39 #include "platform/fonts/GenericFontFamilySettings.h" 40 #include "platform/fonts/GenericFontFamilySettings.h"
40 #include "platform/geometry/IntSize.h" 41 #include "platform/geometry/IntSize.h"
41 #include "platform/graphics/ImageAnimationPolicy.h" 42 #include "platform/graphics/ImageAnimationPolicy.h"
42 #include "platform/weborigin/KURL.h" 43 #include "platform/weborigin/KURL.h"
43 #include "public/platform/PointerProperties.h" 44 #include "public/platform/PointerProperties.h"
44 #include "public/platform/WebDisplayMode.h" 45 #include "public/platform/WebDisplayMode.h"
45 #include "public/platform/WebViewportStyle.h" 46 #include "public/platform/WebViewportStyle.h"
46 47
47 namespace blink { 48 namespace blink {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 GenericFontFamilySettings m_genericFontFamilySettings; 81 GenericFontFamilySettings m_genericFontFamilySettings;
81 IntSize m_textAutosizingWindowSizeOverride; 82 IntSize m_textAutosizingWindowSizeOverride;
82 bool m_textAutosizingEnabled : 1; 83 bool m_textAutosizingEnabled : 1;
83 84
84 SETTINGS_MEMBER_VARIABLES 85 SETTINGS_MEMBER_VARIABLES
85 }; 86 };
86 87
87 } // namespace blink 88 } // namespace blink
88 89
89 #endif // Settings_h 90 #endif // Settings_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698