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

Unified Diff: content/renderer/pepper/fullscreen_container.h

Issue 63253002: Rename WebKit namespace to blink (part 3) (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/renderer/pepper/event_conversion.cc ('k') | content/renderer/pepper/host_array_buffer_var.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/pepper/fullscreen_container.h
diff --git a/content/renderer/pepper/fullscreen_container.h b/content/renderer/pepper/fullscreen_container.h
index 81ee53d85540014faa79deb3bd21207757cb9760..d91cc668f4981aaf783cf354a722329a5f8c1e2b 100644
--- a/content/renderer/pepper/fullscreen_container.h
+++ b/content/renderer/pepper/fullscreen_container.h
@@ -5,11 +5,11 @@
#ifndef CONTENT_RENDERER_PEPPER_PPB_FULLSCREEN_CONTAINER_IMPL_H_
#define CONTENT_RENDERER_PEPPER_PPB_FULLSCREEN_CONTAINER_IMPL_H_
-namespace WebKit {
+namespace blink {
class WebLayer;
struct WebCursorInfo;
struct WebRect;
-} // namespace WebKit
+} // namespace blink
namespace content {
@@ -21,19 +21,19 @@ class FullscreenContainer {
virtual void Invalidate() = 0;
// Invalidates a partial region of the plugin.
- virtual void InvalidateRect(const WebKit::WebRect&) = 0;
+ virtual void InvalidateRect(const blink::WebRect&) = 0;
// Scrolls a partial region of the plugin in the given direction.
- virtual void ScrollRect(int dx, int dy, const WebKit::WebRect&) = 0;
+ virtual void ScrollRect(int dx, int dy, const blink::WebRect&) = 0;
// Destroys the fullscreen window. This also destroys the FullscreenContainer
// instance.
virtual void Destroy() = 0;
// Notifies the container that the mouse cursor has changed.
- virtual void DidChangeCursor(const WebKit::WebCursorInfo& cursor) = 0;
+ virtual void DidChangeCursor(const blink::WebCursorInfo& cursor) = 0;
- virtual void SetLayer(WebKit::WebLayer* layer) = 0;
+ virtual void SetLayer(blink::WebLayer* layer) = 0;
protected:
virtual ~FullscreenContainer() {}
« no previous file with comments | « content/renderer/pepper/event_conversion.cc ('k') | content/renderer/pepper/host_array_buffer_var.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698