HomeSort by relevance Sort by last modified time
    Searched refs:WebCursorInfo (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/chromium_org/content/common/cursors/
webcursor_aura.cc 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
11 using blink::WebCursorInfo;
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:
31 case WebCursorInfo::TypeNorthResize
    [all...]
webcursor.cc 11 using blink::WebCursorInfo;
18 : type_(WebCursorInfo::TypePointer),
27 : type_(WebCursorInfo::TypePointer) {
73 cursor_info->type = static_cast<WebCursorInfo::Type>(type_);
111 if (type == WebCursorInfo::TypeCustom) {
154 return type_ == WebCursorInfo::TypeCustom;
172 static WebCursorInfo::Type ToCursorType(HCURSOR cursor) {
175 WebCursorInfo::Type type;
177 { LoadCursor(NULL, IDC_ARROW), WebCursorInfo::TypePointer },
178 { LoadCursor(NULL, IDC_CROSS), WebCursorInfo::TypeCross }
    [all...]
webcursor_unittest.cc 8 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
10 using blink::WebCursorInfo;
19 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
41 short_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
58 large_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
77 neg_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
96 scale_zero_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
115 scale_tiny_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
137 ok_custom_pickle.WriteInt(WebCursorInfo::TypeCustom);
155 // Convert to WebCursorInfo, make sure the hotspot got clamped
    [all...]
webcursor.h 12 #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 9 #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;
render_widget_fullscreen_pepper.cc 21 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
31 using blink::WebCursorInfo;
173 WebCursorInfo cursor;
320 const blink::WebCursorInfo& cursor) {
  /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 57 blink::WebCursorInfo& cursor_info);
pepper_plugin_instance_impl.h 79 struct WebCursorInfo;
201 blink::WebCursorInfo* cursor_info);
669 void DoSetCursor(blink::WebCursorInfo* cursor);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebCursorInfo.cpp 32 #include "public/platform/WebCursorInfo.h"
38 WebCursorInfo::WebCursorInfo(const Cursor& cursor)
  /external/chromium_org/third_party/WebKit/public/platform/
WebCursorInfo.h 46 struct WebCursorInfo {
102 // null, then customData should be ignored. The WebCursorInfo is not
107 explicit WebCursorInfo(Type type = TypePointer)
117 BLINK_PLATFORM_EXPORT explicit WebCursorInfo(const Cursor&);
  /external/chromium_org/third_party/WebKit/public/web/
WebWidgetClient.h 46 struct WebCursorInfo;
101 virtual void didChangeCursor(const WebCursorInfo&) { }
WebPlugin.h 54 struct WebCursorInfo;
102 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) = 0;
  /external/chromium_org/third_party/WebKit/Source/web/
AssertMatchingEnums.cpp 84 #include "public/platform/WebCursorInfo.h"
334 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypePointer, Cursor::Pointer);
335 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeCross, Cursor::Cross);
336 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHand, Cursor::Hand);
337 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeIBeam, Cursor::IBeam);
338 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeWait, Cursor::Wait);
339 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHelp, Cursor::Help);
340 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeEastResize, Cursor::EastResize);
341 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthResize, Cursor::NorthResize);
342 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthEastResize, Cursor::NorthEastResize)
    [all...]
ChromeClientImpl.h 62 struct WebCursorInfo;
155 void setCursorForPlugin(const WebCursorInfo&);
188 void setCursor(const WebCursorInfo&);
WebPluginContainerImpl.cpp 76 #include "public/platform/WebCursorInfo.h"
760 WebCursorInfo cursorInfo;
805 WebCursorInfo cursorInfo;
848 WebCursorInfo cursorInfo;
866 WebCursorInfo cursorInfo;
893 WebCursorInfo cursorInfo;
916 WebCursorInfo cursorInfo;
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 12 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
94 blink::WebCursorInfo& cursor_info);
126 virtual void didChangeCursor(const blink::WebCursorInfo& cursor);
148 blink::WebCursorInfo current_cursor_;
webview_plugin.cc 25 using blink::WebCursorInfo;
167 WebCursorInfo& cursor) {
233 void WebViewPlugin::didChangeCursor(const WebCursorInfo& cursor) {
  /external/chromium_org/third_party/WebKit/Source/web/tests/
FakeWebPlugin.h 59 virtual bool handleInputEvent(const WebInputEvent&, WebCursorInfo&) OVERRIDE { return false; }
  /external/chromium_org/content/shell/renderer/test_runner/
test_plugin.h 70 blink::WebCursorInfo& info);
  /external/chromium_org/content/browser/renderer_host/input/
touch_emulator.cc 13 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
68 cursor_info.type = blink::WebCursorInfo::TypePointer;
116 cursor_info.type = blink::WebCursorInfo::TypeCustom;
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl.cc 21 using blink::WebCursorInfo;
  /external/chromium_org/content/renderer/browser_plugin/
browser_plugin.h 100 blink::WebCursorInfo& cursor_info) OVERRIDE;

Completed in 729 milliseconds

1 2 3