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

Side by Side Diff: third_party/WebKit/Source/web/WebViewFrameWidget.cpp

Issue 1463823003: Return a enumeration of the state of handling of InputEvents. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years 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 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be found 2 // Use of this source code is governed by a BSD-style license that can be found
3 // in the LICENSE file. 3 // in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "web/WebViewFrameWidget.h" 6 #include "web/WebViewFrameWidget.h"
7 7
8 #include "web/WebLocalFrameImpl.h" 8 #include "web/WebLocalFrameImpl.h"
9 #include "web/WebViewImpl.h" 9 #include "web/WebViewImpl.h"
10 10
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC allback* callback) 100 void WebViewFrameWidget::compositeAndReadbackAsync(WebCompositeAndReadbackAsyncC allback* callback)
101 { 101 {
102 return m_webView->compositeAndReadbackAsync(callback); 102 return m_webView->compositeAndReadbackAsync(callback);
103 } 103 }
104 104
105 void WebViewFrameWidget::themeChanged() 105 void WebViewFrameWidget::themeChanged()
106 { 106 {
107 return m_webView->themeChanged(); 107 return m_webView->themeChanged();
108 } 108 }
109 109
110 bool WebViewFrameWidget::handleInputEvent(const WebInputEvent& event) 110 WebInputEventResult WebViewFrameWidget::handleInputEvent(const WebInputEvent& ev ent)
111 { 111 {
112 return m_webView->handleInputEvent(event); 112 return m_webView->handleInputEvent(event);
113 } 113 }
114 114
115 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible) 115 void WebViewFrameWidget::setCursorVisibilityState(bool isVisible)
116 { 116 {
117 return m_webView->setCursorVisibilityState(isVisible); 117 return m_webView->setCursorVisibilityState(isVisible);
118 } 118 }
119 119
120 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point) 120 bool WebViewFrameWidget::hasTouchEventHandlersAt(const WebPoint& point)
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 { 260 {
261 return m_webView->updateTopControlsState(constraints, current, animate); 261 return m_webView->updateTopControlsState(constraints, current, animate);
262 } 262 }
263 263
264 void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilitySta te, bool isInitialState) 264 void WebViewFrameWidget::setVisibilityState(WebPageVisibilityState visibilitySta te, bool isInitialState)
265 { 265 {
266 return m_webView->setVisibilityState(visibilityState, isInitialState); 266 return m_webView->setVisibilityState(visibilityState, isInitialState);
267 } 267 }
268 268
269 } // namespace blink 269 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698