OLD | NEW |
1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this | 1 // Copyright (c) 2008 The Chromium Authors. All rights reserved. Use of this |
2 // source code is governed by a BSD-style license that can be found in the | 2 // source code is governed by a BSD-style license that can be found in the |
3 // LICENSE file. | 3 // LICENSE file. |
4 | 4 |
5 #include "webkit/glue/webcursor.h" | 5 #include "webkit/glue/webcursor.h" |
6 | 6 |
7 #include <gdk/gdk.h> | 7 #include <gdk/gdk.h> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "webkit/api/public/WebCursorInfo.h" | 10 #include "third_party/WebKit/WebKit/chromium/public/WebCursorInfo.h" |
11 | 11 |
12 using WebKit::WebCursorInfo; | 12 using WebKit::WebCursorInfo; |
13 | 13 |
14 namespace { | 14 namespace { |
15 | 15 |
16 // webcursor_gtk_data.h is taken directly from WebKit's CursorGtk.h. | 16 // webcursor_gtk_data.h is taken directly from WebKit's CursorGtk.h. |
17 #include "webkit/glue/webcursor_gtk_data.h" | 17 #include "webkit/glue/webcursor_gtk_data.h" |
18 | 18 |
19 // This helper function is taken directly from WebKit's CursorGtk.cpp. | 19 // This helper function is taken directly from WebKit's CursorGtk.cpp. |
20 // It attempts to create a custom cursor from the data inlined in | 20 // It attempts to create a custom cursor from the data inlined in |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
183 return true; | 183 return true; |
184 } | 184 } |
185 | 185 |
186 void WebCursor::CleanupPlatformData() { | 186 void WebCursor::CleanupPlatformData() { |
187 return; | 187 return; |
188 } | 188 } |
189 | 189 |
190 void WebCursor::CopyPlatformData(const WebCursor& other) { | 190 void WebCursor::CopyPlatformData(const WebCursor& other) { |
191 return; | 191 return; |
192 } | 192 } |
OLD | NEW |