| 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_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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |