/external/chromium_org/webkit/common/cursors/ |
webcursor_aura.cc | 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 11 using blink::WebCursorInfo; 15 case WebCursorInfo::TypePointer: 17 case WebCursorInfo::TypeCross: 19 case WebCursorInfo::TypeHand: 21 case WebCursorInfo::TypeIBeam: 23 case WebCursorInfo::TypeWait: 25 case WebCursorInfo::TypeHelp: 27 case WebCursorInfo::TypeEastResize: 29 case WebCursorInfo::TypeNorthResize [all...] |
webcursor_gtk.cc | 11 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 14 using blink::WebCursorInfo; 54 case WebCursorInfo::TypePointer: 56 case WebCursorInfo::TypeCross: 58 case WebCursorInfo::TypeHand: 60 case WebCursorInfo::TypeIBeam: 62 case WebCursorInfo::TypeWait: 64 case WebCursorInfo::TypeHelp: 66 case WebCursorInfo::TypeEastResize: 68 case WebCursorInfo::TypeNorthResize [all...] |
webcursor_win.cc | 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 13 using blink::WebCursorInfo; 15 static LPCWSTR ToCursorID(WebCursorInfo::Type type) { 17 case WebCursorInfo::TypePointer: 19 case WebCursorInfo::TypeCross: 21 case WebCursorInfo::TypeHand: 23 case WebCursorInfo::TypeIBeam: 25 case WebCursorInfo::TypeWait: 27 case WebCursorInfo::TypeHelp: 29 case WebCursorInfo::TypeEastResize [all...] |
webcursor.cc | 11 using blink::WebCursorInfo; 16 : type_(WebCursorInfo::TypePointer), 25 : type_(WebCursorInfo::TypePointer) { 71 cursor_info->type = static_cast<WebCursorInfo::Type>(type_); 109 if (type == WebCursorInfo::TypeCustom) { 152 return type_ == WebCursorInfo::TypeCustom; 170 static WebCursorInfo::Type ToCursorType(HCURSOR cursor) { 173 WebCursorInfo::Type type; 175 { LoadCursor(NULL, IDC_ARROW), WebCursorInfo::TypePointer }, 176 { LoadCursor(NULL, IDC_CROSS), WebCursorInfo::TypeCross } [all...] |
webcursor_unittest.cc | 7 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 10 using blink::WebCursorInfo; 17 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 46 short_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 63 large_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 82 neg_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 101 scale_zero_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 120 scale_tiny_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 156 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 174 // Convert to WebCursorInfo, make sure the hotspot got clamped [all...] |
webcursor.h | 9 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 46 explicit CursorInfo(blink::WebCursorInfo::Type cursor_type) 55 : type(blink::WebCursorInfo::TypePointer), 62 blink::WebCursorInfo::Type type;
|
/external/chromium_org/content/renderer/ |
cursor_utils.h | 11 struct WebCursorInfo; 16 // Adapts our cursor info to blink::WebCursorInfo. 18 blink::WebCursorInfo* webkit_cursor_info); 23 const blink::WebCursorInfo& webkit_cursor_info);
|
cursor_utils.cc | 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 11 using blink::WebCursorInfo; 16 WebCursorInfo* webkit_cursor_info) { 32 const WebCursorInfo& webkit_cursor_info) {
|
render_widget_fullscreen_pepper.h | 38 virtual void DidChangeCursor(const blink::WebCursorInfo& cursor) OVERRIDE;
|
/external/chromium/webkit/glue/ |
webcursor_win.cc | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 13 using WebKit::WebCursorInfo; 15 static LPCWSTR ToCursorID(WebCursorInfo::Type type) { 17 case WebCursorInfo::TypePointer: 19 case WebCursorInfo::TypeCross: 21 case WebCursorInfo::TypeHand: 23 case WebCursorInfo::TypeIBeam: 25 case WebCursorInfo::TypeWait: 27 case WebCursorInfo::TypeHelp: 29 case WebCursorInfo::TypeEastResize [all...] |
webcursor_gtk.cc | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 14 using WebKit::WebCursorInfo; 71 case WebCursorInfo::TypePointer: 73 case WebCursorInfo::TypeCross: 75 case WebCursorInfo::TypeHand: 77 case WebCursorInfo::TypeIBeam: 79 case WebCursorInfo::TypeWait: 81 case WebCursorInfo::TypeHelp: 83 case WebCursorInfo::TypeEastResize: 85 case WebCursorInfo::TypeNorthResize [all...] |
webcursor_unittest.cc | 7 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 11 using WebKit::WebCursorInfo; 18 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 35 short_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 52 large_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 71 neg_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 102 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom); 118 // Convert to WebCursorInfo, make sure the hotspot got clamped. 119 WebCursorInfo info;
|
webcursor.h | 35 struct WebCursorInfo; 45 explicit WebCursor(const WebKit::WebCursorInfo& cursor_info); 52 // Conversion from/to WebCursorInfo. 53 void InitFromCursorInfo(const WebKit::WebCursorInfo& cursor_info); 54 void GetCursorInfo(WebKit::WebCursorInfo* cursor_info) const;
|
webcursor.cc | 9 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCursorInfo.h" 12 using WebKit::WebCursorInfo; 18 : type_(WebCursorInfo::TypePointer) { 22 WebCursor::WebCursor(const WebCursorInfo& cursor_info) 23 : type_(WebCursorInfo::TypePointer) { 46 void WebCursor::InitFromCursorInfo(const WebCursorInfo& cursor_info) { 63 void WebCursor::GetCursorInfo(WebCursorInfo* cursor_info) const { 64 cursor_info->type = static_cast<WebCursorInfo::Type>(type_); 94 if (type == WebCursorInfo::TypeCustom) { 135 return type_ == WebCursorInfo::TypeCustom [all...] |
/external/chromium_org/content/renderer/pepper/ |
fullscreen_container.h | 10 struct WebCursorInfo; 34 virtual void DidChangeCursor(const blink::WebCursorInfo& cursor) = 0;
|
pepper_webplugin_impl.h | 59 blink::WebCursorInfo& cursor_info);
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebCursorInfo.cpp | 32 #include "public/platform/WebCursorInfo.h" 40 WebCursorInfo::WebCursorInfo(const Cursor& cursor)
|
/external/chromium_org/third_party/WebKit/public/web/ |
WebWidgetClient.h | 46 struct WebCursorInfo; 114 virtual void didChangeCursor(const WebCursorInfo&) { }
|
WebPlugin.h | 53 struct WebCursorInfo; 95 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebCursorInfo.h | 48 struct WebCursorInfo { 104 // null, then customData should be ignored. The WebCursorInfo is not 109 explicit WebCursorInfo(Type type = TypePointer) 119 BLINK_PLATFORM_EXPORT explicit WebCursorInfo(const WebCore::Cursor&);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
AssertMatchingEnums.cpp | 103 #include "public/platform/WebCursorInfo.h" 327 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypePointer, Cursor::Pointer); 328 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeCross, Cursor::Cross); 329 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHand, Cursor::Hand); 330 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeIBeam, Cursor::IBeam); 331 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeWait, Cursor::Wait); 332 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHelp, Cursor::Help); 333 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeEastResize, Cursor::EastResize); 334 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthResize, Cursor::NorthResize); 335 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthEastResize, Cursor::NorthEastResize) [all...] |
ChromeClientImpl.h | 64 struct WebCursorInfo; 169 void setCursorForPlugin(const WebCursorInfo&); 204 void setCursor(const WebCursorInfo&);
|
/external/chromium_org/components/plugins/renderer/ |
webview_plugin.h | 12 #include "third_party/WebKit/public/platform/WebCursorInfo.h" 94 blink::WebCursorInfo& cursor_info); 122 virtual void didChangeCursor(const blink::WebCursorInfo& cursor); 141 blink::WebCursorInfo current_cursor_;
|
webview_plugin.cc | 25 using blink::WebCursorInfo; 150 WebCursorInfo& cursor) { 212 void WebViewPlugin::didChangeCursor(const WebCursorInfo& cursor) {
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
FakeWebPlugin.h | 61 virtual bool handleInputEvent(const blink::WebInputEvent&, blink::WebCursorInfo&) OVERRIDE { return false; }
|