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

Unified Diff: webkit/common/cursors/webcursor.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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/child/worker_task_runner_unittest.cc ('k') | webkit/common/cursors/webcursor.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/common/cursors/webcursor.h
diff --git a/webkit/common/cursors/webcursor.h b/webkit/common/cursors/webcursor.h
index c64689e63072b4f83637ab4953f4729e0e12e05a..363e7b9eb273f15934253d4c4df9c63baaf5296c 100644
--- a/webkit/common/cursors/webcursor.h
+++ b/webkit/common/cursors/webcursor.h
@@ -43,7 +43,7 @@ class PickleIterator;
class WEBKIT_COMMON_EXPORT WebCursor {
public:
struct CursorInfo {
- explicit CursorInfo(WebKit::WebCursorInfo::Type cursor_type)
+ explicit CursorInfo(blink::WebCursorInfo::Type cursor_type)
: type(cursor_type),
image_scale_factor(1) {
#if defined(OS_WIN)
@@ -52,14 +52,14 @@ class WEBKIT_COMMON_EXPORT WebCursor {
}
CursorInfo()
- : type(WebKit::WebCursorInfo::TypePointer),
+ : type(blink::WebCursorInfo::TypePointer),
image_scale_factor(1) {
#if defined(OS_WIN)
external_handle = NULL;
#endif
}
- WebKit::WebCursorInfo::Type type;
+ blink::WebCursorInfo::Type type;
gfx::Point hotspot;
float image_scale_factor;
SkBitmap custom_image;
« no previous file with comments | « webkit/child/worker_task_runner_unittest.cc ('k') | webkit/common/cursors/webcursor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698