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

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

Issue 652673002: NOT FOR REVIEW: Modify ToggleFullscreenMode. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fixPowerBlockerNonMedia
Patch Set: Rebase Created 6 years, 2 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/public/browser/web_contents_delegate.h ('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 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 348
349 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; 349 virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
350 350
351 // blink::WebWidgetClient implementation ------------------------------------ 351 // blink::WebWidgetClient implementation ------------------------------------
352 352
353 // Most methods are handled by RenderWidget. 353 // Most methods are handled by RenderWidget.
354 virtual void didFocus(); 354 virtual void didFocus();
355 virtual void didBlur(); 355 virtual void didBlur();
356 virtual void show(blink::WebNavigationPolicy policy); 356 virtual void show(blink::WebNavigationPolicy policy);
357 virtual void runModal(); 357 virtual void runModal();
358 virtual bool enterFullScreen(); 358 virtual bool enterFullScreen(bool is_video);
359 virtual void exitFullScreen(); 359 virtual void exitFullScreen(bool is_video);
360 virtual bool requestPointerLock(); 360 virtual bool requestPointerLock();
361 virtual void requestPointerUnlock(); 361 virtual void requestPointerUnlock();
362 virtual bool isPointerLocked(); 362 virtual bool isPointerLocked();
363 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event, 363 virtual void didHandleGestureEvent(const blink::WebGestureEvent& event,
364 bool event_cancelled) OVERRIDE; 364 bool event_cancelled) OVERRIDE;
365 virtual void initializeLayerTreeView() OVERRIDE; 365 virtual void initializeLayerTreeView() OVERRIDE;
366 366
367 // blink::WebViewClient implementation -------------------------------------- 367 // blink::WebViewClient implementation --------------------------------------
368 368
369 virtual blink::WebView* createView(blink::WebLocalFrame* creator, 369 virtual blink::WebView* createView(blink::WebLocalFrame* creator,
(...skipping 740 matching lines...) Expand 10 before | Expand all | Expand 10 after
1110 // use the Observer interface to filter IPC messages and receive frame change 1110 // use the Observer interface to filter IPC messages and receive frame change
1111 // notifications. 1111 // notifications.
1112 // --------------------------------------------------------------------------- 1112 // ---------------------------------------------------------------------------
1113 1113
1114 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1114 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1115 }; 1115 };
1116 1116
1117 } // namespace content 1117 } // namespace content
1118 1118
1119 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1119 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/browser/web_contents_delegate.h ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698