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

Side by Side Diff: webkit/child/webfallbackthemeengine_impl.h

Issue 61553006: Rename WebKit namespace to blink (part 5) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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/child/web_discardable_memory_impl.h ('k') | webkit/child/webfallbackthemeengine_impl.cc » ('j') | 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_ 5 #ifndef WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_
6 #define WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_ 6 #define WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_
7 7
8 #include "base/memory/scoped_ptr.h" 8 #include "base/memory/scoped_ptr.h"
9 #include "third_party/WebKit/public/platform/WebFallbackThemeEngine.h" 9 #include "third_party/WebKit/public/platform/WebFallbackThemeEngine.h"
10 10
11 namespace ui { 11 namespace ui {
12 class FallbackTheme; 12 class FallbackTheme;
13 } 13 }
14 14
15 namespace webkit_glue { 15 namespace webkit_glue {
16 16
17 class WebFallbackThemeEngineImpl : public WebKit::WebFallbackThemeEngine { 17 class WebFallbackThemeEngineImpl : public blink::WebFallbackThemeEngine {
18 public: 18 public:
19 WebFallbackThemeEngineImpl(); 19 WebFallbackThemeEngineImpl();
20 virtual ~WebFallbackThemeEngineImpl(); 20 virtual ~WebFallbackThemeEngineImpl();
21 21
22 // WebFallbackThemeEngine methods: 22 // WebFallbackThemeEngine methods:
23 virtual WebKit::WebSize getSize(WebKit::WebFallbackThemeEngine::Part); 23 virtual blink::WebSize getSize(blink::WebFallbackThemeEngine::Part);
24 virtual void paint( 24 virtual void paint(
25 WebKit::WebCanvas* canvas, 25 blink::WebCanvas* canvas,
26 WebKit::WebFallbackThemeEngine::Part part, 26 blink::WebFallbackThemeEngine::Part part,
27 WebKit::WebFallbackThemeEngine::State state, 27 blink::WebFallbackThemeEngine::State state,
28 const WebKit::WebRect& rect, 28 const blink::WebRect& rect,
29 const WebKit::WebFallbackThemeEngine::ExtraParams* extra_params); 29 const blink::WebFallbackThemeEngine::ExtraParams* extra_params);
30 30
31 private: 31 private:
32 scoped_ptr<ui::FallbackTheme> theme_; 32 scoped_ptr<ui::FallbackTheme> theme_;
33 33
34 DISALLOW_COPY_AND_ASSIGN(WebFallbackThemeEngineImpl); 34 DISALLOW_COPY_AND_ASSIGN(WebFallbackThemeEngineImpl);
35 }; 35 };
36 36
37 } // namespace webkit_glue 37 } // namespace webkit_glue
38 38
39 #endif // WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_ 39 #endif // WEBKIT_CHILD_WEBFALLBACKTHEMEENGINE_IMPL_H_
OLDNEW
« no previous file with comments | « webkit/child/web_discardable_memory_impl.h ('k') | webkit/child/webfallbackthemeengine_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698