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

Side by Side Diff: webkit/glue/webkitplatformsupport_impl.h

Issue 11824036: Update #includes (and some comments) since WebKitPlatformSupport class is now defined in Platform.h… (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: Update some #includes now that WebKitPlatformSupport is defined in Platform.h Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « webkit/glue/cpp_bound_class_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_ 5 #ifndef WEBKIT_PLATFORM_SUPPORT_IMPL_H_
6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_ 6 #define WEBKIT_PLATFORM_SUPPORT_IMPL_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "base/platform_file.h" 9 #include "base/platform_file.h"
10 #include "base/threading/thread_local_storage.h" 10 #include "base/threading/thread_local_storage.h"
11 #include "base/timer.h" 11 #include "base/timer.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebKitPlatfo rmSupport.h" 12 #include "third_party/WebKit/Source/Platform/chromium/public/Platform.h"
13 #include "ui/base/layout.h" 13 #include "ui/base/layout.h"
14 #include "webkit/glue/resource_loader_bridge.h" 14 #include "webkit/glue/resource_loader_bridge.h"
15 #include "webkit/glue/webkit_glue_export.h" 15 #include "webkit/glue/webkit_glue_export.h"
16 16
17 #if defined(USE_DEFAULT_RENDER_THEME) 17 #if defined(USE_DEFAULT_RENDER_THEME)
18 #include "webkit/glue/webthemeengine_impl_default.h" 18 #include "webkit/glue/webthemeengine_impl_default.h"
19 #elif defined(OS_WIN) 19 #elif defined(OS_WIN)
20 #include "webkit/glue/webthemeengine_impl_win.h" 20 #include "webkit/glue/webthemeengine_impl_win.h"
21 #elif defined(OS_MACOSX) 21 #elif defined(OS_MACOSX)
22 #include "webkit/glue/webthemeengine_impl_mac.h" 22 #include "webkit/glue/webthemeengine_impl_mac.h"
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 int shared_timer_suspended_; // counter 183 int shared_timer_suspended_; // counter
184 WebThemeEngineImpl theme_engine_; 184 WebThemeEngineImpl theme_engine_;
185 base::ThreadLocalStorage::Slot current_thread_slot_; 185 base::ThreadLocalStorage::Slot current_thread_slot_;
186 scoped_ptr<webkit::WebCompositorSupportImpl> compositor_support_; 186 scoped_ptr<webkit::WebCompositorSupportImpl> compositor_support_;
187 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_; 187 scoped_ptr<FlingCurveConfiguration> fling_curve_configuration_;
188 }; 188 };
189 189
190 } // namespace webkit_glue 190 } // namespace webkit_glue
191 191
192 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_ 192 #endif // WEBKIT_PLATFORM_SUPPORT_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/glue/cpp_bound_class_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698