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

1 2

  /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;
321 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 77 struct WebCursorInfo;
191 blink::WebCursorInfo* cursor_info);
648 void DoSetCursor(blink::WebCursorInfo* cursor);
    [all...]
  /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;
105 virtual void didChangeCursor(const WebCursorInfo&) { }
WebPlugin.h 52 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 83 #include "public/platform/WebCursorInfo.h"
326 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypePointer, Cursor::Pointer);
327 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeCross, Cursor::Cross);
328 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHand, Cursor::Hand);
329 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeIBeam, Cursor::IBeam);
330 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeWait, Cursor::Wait);
331 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeHelp, Cursor::Help);
332 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeEastResize, Cursor::EastResize);
333 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthResize, Cursor::NorthResize);
334 COMPILE_ASSERT_MATCHING_ENUM(WebCursorInfo::TypeNorthEastResize, Cursor::NorthEastResize)
    [all...]
ChromeClientImpl.h 66 struct WebCursorInfo;
158 void setCursorForPlugin(const WebCursorInfo&);
190 void setCursor(const WebCursorInfo&);
WebPluginContainerImpl.cpp 81 #include "public/platform/WebCursorInfo.h"
709 WebCursorInfo cursorInfo;
754 WebCursorInfo cursorInfo;
797 WebCursorInfo cursorInfo;
815 WebCursorInfo cursorInfo;
842 WebCursorInfo cursorInfo;
865 WebCursorInfo cursorInfo;
ChromeClientImpl.cpp 70 #include "public/platform/WebCursorInfo.h"
660 setCursor(WebCursorInfo(cursor));
663 void ChromeClientImpl::setCursor(const WebCursorInfo& cursor)
675 void ChromeClientImpl::setCursorForPlugin(const WebCursorInfo& cursor)
  /external/chromium_org/components/plugins/renderer/
webview_plugin.h 12 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
91 blink::WebCursorInfo& cursor_info);
123 virtual void didChangeCursor(const blink::WebCursorInfo& cursor);
144 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 60 virtual bool handleInputEvent(const blink::WebInputEvent&, blink::WebCursorInfo&) OVERRIDE { return false; }
  /external/chromium_org/content/shell/renderer/test_runner/
TestPlugin.h 63 virtual bool handleInputEvent(const blink::WebInputEvent&, blink::WebCursorInfo&);
  /external/chromium_org/content/browser/renderer_host/input/
touch_emulator.cc 13 #include "third_party/WebKit/public/platform/WebCursorInfo.h"
67 cursor_info.type = blink::WebCursorInfo::TypePointer;
117 cursor_info.type = blink::WebCursorInfo::TypeCustom;
  /external/chromium_org/content/child/npapi/
webplugin_delegate_impl.cc 21 using blink::WebCursorInfo;

Completed in 603 milliseconds

1 2