OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
327 | 327 |
328 bool OnMessageReceived(const IPC::Message& msg) override; | 328 bool OnMessageReceived(const IPC::Message& msg) override; |
329 | 329 |
330 // blink::WebWidgetClient implementation ------------------------------------ | 330 // blink::WebWidgetClient implementation ------------------------------------ |
331 | 331 |
332 // Most methods are handled by RenderWidget. | 332 // Most methods are handled by RenderWidget. |
333 virtual void didFocus(); | 333 virtual void didFocus(); |
334 virtual void didBlur(); | 334 virtual void didBlur(); |
335 virtual void show(blink::WebNavigationPolicy policy); | 335 virtual void show(blink::WebNavigationPolicy policy); |
336 virtual void runModal(); | 336 virtual void runModal(); |
337 virtual bool enterFullScreen(); | |
338 virtual void exitFullScreen(); | |
339 virtual bool requestPointerLock(); | 337 virtual bool requestPointerLock(); |
340 virtual void requestPointerUnlock(); | 338 virtual void requestPointerUnlock(); |
341 virtual bool isPointerLocked(); | 339 virtual bool isPointerLocked(); |
342 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, | 340 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, |
343 bool event_cancelled) override; | 341 bool event_cancelled) override; |
344 virtual void initializeLayerTreeView() override; | 342 virtual void initializeLayerTreeView() override; |
345 | 343 |
346 // blink::WebViewClient implementation -------------------------------------- | 344 // blink::WebViewClient implementation -------------------------------------- |
347 | 345 |
348 virtual blink::WebView* createView(blink::WebLocalFrame* creator, | 346 virtual blink::WebView* createView(blink::WebLocalFrame* creator, |
(...skipping 713 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1062 // use the Observer interface to filter IPC messages and receive frame change | 1060 // use the Observer interface to filter IPC messages and receive frame change |
1063 // notifications. | 1061 // notifications. |
1064 // --------------------------------------------------------------------------- | 1062 // --------------------------------------------------------------------------- |
1065 | 1063 |
1066 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); | 1064 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); |
1067 }; | 1065 }; |
1068 | 1066 |
1069 } // namespace content | 1067 } // namespace content |
1070 | 1068 |
1071 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ | 1069 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ |
OLD | NEW |