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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 789533002: Fullscreen: make fullscreen requests come from RenderFrame (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make try happy Created 5 years, 11 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
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/renderer/render_frame_impl.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698