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

Side by Side Diff: third_party/WebKit/public/web/WebView.h

Issue 2951053005: Add Mojo API for Blink hit testing (Closed)
Patch Set: Created 3 years, 5 months 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2009, 2010, 2011, 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 using WebWidget::ResizeVisualViewport; 83 using WebWidget::ResizeVisualViewport;
84 using WebWidget::DidEnterFullscreen; 84 using WebWidget::DidEnterFullscreen;
85 using WebWidget::DidExitFullscreen; 85 using WebWidget::DidExitFullscreen;
86 using WebWidget::BeginFrame; 86 using WebWidget::BeginFrame;
87 using WebWidget::UpdateAllLifecyclePhases; 87 using WebWidget::UpdateAllLifecyclePhases;
88 using WebWidget::Paint; 88 using WebWidget::Paint;
89 using WebWidget::PaintIgnoringCompositing; 89 using WebWidget::PaintIgnoringCompositing;
90 using WebWidget::LayoutAndPaintAsync; 90 using WebWidget::LayoutAndPaintAsync;
91 using WebWidget::CompositeAndReadbackAsync; 91 using WebWidget::CompositeAndReadbackAsync;
92 using WebWidget::ThemeChanged; 92 using WebWidget::ThemeChanged;
93 using WebWidget::HitTestFrameAt;
93 using WebWidget::HandleInputEvent; 94 using WebWidget::HandleInputEvent;
94 using WebWidget::SetCursorVisibilityState; 95 using WebWidget::SetCursorVisibilityState;
95 using WebWidget::HasTouchEventHandlersAt; 96 using WebWidget::HasTouchEventHandlersAt;
96 using WebWidget::ApplyViewportDeltas; 97 using WebWidget::ApplyViewportDeltas;
97 using WebWidget::MouseCaptureLost; 98 using WebWidget::MouseCaptureLost;
98 using WebWidget::SetFocus; 99 using WebWidget::SetFocus;
99 using WebWidget::CompositionRange; 100 using WebWidget::CompositionRange;
100 using WebWidget::SelectionBounds; 101 using WebWidget::SelectionBounds;
101 using WebWidget::SelectionTextDirection; 102 using WebWidget::SelectionTextDirection;
102 using WebWidget::IsSelectionAnchorFirst; 103 using WebWidget::IsSelectionAnchorFirst;
(...skipping 369 matching lines...) Expand 10 before | Expand all | Expand 10 after
472 // completed. 473 // completed.
473 WebWidget* GetWidget() { return this; } 474 WebWidget* GetWidget() { return this; }
474 475
475 protected: 476 protected:
476 ~WebView() {} 477 ~WebView() {}
477 }; 478 };
478 479
479 } // namespace blink 480 } // namespace blink
480 481
481 #endif 482 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698