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

Side by Side Diff: chrome/renderer/webview_color_overlay.h

Issue 63273002: Rename WebKit namespace to blink (part 4) (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 | « chrome/renderer/web_apps.cc ('k') | chrome/renderer/webview_color_overlay.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 CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_ 5 #ifndef CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_
6 #define CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_ 6 #define CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "third_party/WebKit/public/platform/WebRect.h" 10 #include "third_party/WebKit/public/platform/WebRect.h"
11 #include "third_party/WebKit/public/web/WebPageOverlay.h" 11 #include "third_party/WebKit/public/web/WebPageOverlay.h"
12 #include "third_party/skia/include/core/SkColor.h" 12 #include "third_party/skia/include/core/SkColor.h"
13 13
14 namespace content { 14 namespace content {
15 class RenderView; 15 class RenderView;
16 } 16 }
17 17
18 // This class draws the given color on a PageOverlay of a WebView. 18 // This class draws the given color on a PageOverlay of a WebView.
19 class WebViewColorOverlay : public WebKit::WebPageOverlay { 19 class WebViewColorOverlay : public blink::WebPageOverlay {
20 public: 20 public:
21 WebViewColorOverlay(content::RenderView* render_view, SkColor color); 21 WebViewColorOverlay(content::RenderView* render_view, SkColor color);
22 virtual ~WebViewColorOverlay(); 22 virtual ~WebViewColorOverlay();
23 23
24 private: 24 private:
25 // WebKit::WebPageOverlay implementation: 25 // blink::WebPageOverlay implementation:
26 virtual void paintPageOverlay(WebKit::WebCanvas* canvas); 26 virtual void paintPageOverlay(blink::WebCanvas* canvas);
27 27
28 content::RenderView* render_view_; 28 content::RenderView* render_view_;
29 SkColor color_; 29 SkColor color_;
30 30
31 DISALLOW_COPY_AND_ASSIGN(WebViewColorOverlay); 31 DISALLOW_COPY_AND_ASSIGN(WebViewColorOverlay);
32 }; 32 };
33 33
34 #endif // CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_ 34 #endif // CHROME_RENDERER_WEBVIEW_COLOR_OVERLAY_H_
OLDNEW
« no previous file with comments | « chrome/renderer/web_apps.cc ('k') | chrome/renderer/webview_color_overlay.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698