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

Side by Side Diff: content/browser/renderer_host/render_view_host_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
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_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 void OnShowWidget(int route_id, const gfx::Rect& initial_pos); 348 void OnShowWidget(int route_id, const gfx::Rect& initial_pos);
349 void OnShowFullscreenWidget(int route_id); 349 void OnShowFullscreenWidget(int route_id);
350 void OnRunModal(int opener_id, IPC::Message* reply_msg); 350 void OnRunModal(int opener_id, IPC::Message* reply_msg);
351 void OnRenderViewReady(); 351 void OnRenderViewReady();
352 void OnRenderProcessGone(int status, int error_code); 352 void OnRenderProcessGone(int status, int error_code);
353 void OnUpdateState(int32 page_id, const PageState& state); 353 void OnUpdateState(int32 page_id, const PageState& state);
354 void OnUpdateTargetURL(const GURL& url); 354 void OnUpdateTargetURL(const GURL& url);
355 void OnClose(); 355 void OnClose();
356 void OnRequestMove(const gfx::Rect& pos); 356 void OnRequestMove(const gfx::Rect& pos);
357 void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level); 357 void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level);
358 void OnToggleFullscreen(bool enter_fullscreen); 358 void OnToggleFullscreen(bool enter_fullscreen, bool is_video);
359 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); 359 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size);
360 void OnPasteFromSelectionClipboard(); 360 void OnPasteFromSelectionClipboard();
361 void OnRouteCloseEvent(); 361 void OnRouteCloseEvent();
362 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); 362 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params);
363 void OnStartDragging(const DropData& drop_data, 363 void OnStartDragging(const DropData& drop_data,
364 blink::WebDragOperationsMask operations_allowed, 364 blink::WebDragOperationsMask operations_allowed,
365 const SkBitmap& bitmap, 365 const SkBitmap& bitmap,
366 const gfx::Vector2d& bitmap_offset_in_dip, 366 const gfx::Vector2d& bitmap_offset_in_dip,
367 const DragEventSourceInfo& event_info); 367 const DragEventSourceInfo& event_info);
368 void OnUpdateDragCursor(blink::WebDragOperation drag_operation); 368 void OnUpdateDragCursor(blink::WebDragOperation drag_operation);
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
468 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); 468 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl);
469 }; 469 };
470 470
471 #if defined(COMPILER_MSVC) 471 #if defined(COMPILER_MSVC)
472 #pragma warning(pop) 472 #pragma warning(pop)
473 #endif 473 #endif
474 474
475 } // namespace content 475 } // namespace content
476 476
477 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ 477 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_
OLDNEW
« no previous file with comments | « content/browser/renderer_host/render_view_host_delegate.h ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698