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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 void OnShowView(int route_id, | 381 void OnShowView(int route_id, |
382 WindowOpenDisposition disposition, | 382 WindowOpenDisposition disposition, |
383 const gfx::Rect& initial_pos, | 383 const gfx::Rect& initial_pos, |
384 bool user_gesture); | 384 bool user_gesture); |
385 void OnShowWidget(int route_id, const gfx::Rect& initial_pos); | 385 void OnShowWidget(int route_id, const gfx::Rect& initial_pos); |
386 void OnShowFullscreenWidget(int route_id); | 386 void OnShowFullscreenWidget(int route_id); |
387 void OnRunModal(int opener_id, IPC::Message* reply_msg); | 387 void OnRunModal(int opener_id, IPC::Message* reply_msg); |
388 void OnRenderViewReady(); | 388 void OnRenderViewReady(); |
389 void OnRenderProcessGone(int status, int error_code); | 389 void OnRenderProcessGone(int status, int error_code); |
390 void OnUpdateState(int32 page_id, const PageState& state); | 390 void OnUpdateState(int32 page_id, const PageState& state); |
391 void OnUpdateTargetURL(int32 page_id, const GURL& url); | 391 void OnUpdateTargetURL(const GURL& url); |
392 void OnClose(); | 392 void OnClose(); |
393 void OnRequestMove(const gfx::Rect& pos); | 393 void OnRequestMove(const gfx::Rect& pos); |
394 void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level); | 394 void OnDocumentAvailableInMainFrame(bool uses_temporary_zoom_level); |
395 void OnToggleFullscreen(bool enter_fullscreen); | 395 void OnToggleFullscreen(bool enter_fullscreen); |
396 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); | 396 void OnDidContentsPreferredSizeChange(const gfx::Size& new_size); |
397 void OnPasteFromSelectionClipboard(); | 397 void OnPasteFromSelectionClipboard(); |
398 void OnRouteCloseEvent(); | 398 void OnRouteCloseEvent(); |
399 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); | 399 void OnRouteMessageEvent(const ViewMsg_PostMessage_Params& params); |
400 void OnStartDragging(const DropData& drop_data, | 400 void OnStartDragging(const DropData& drop_data, |
401 blink::WebDragOperationsMask operations_allowed, | 401 blink::WebDragOperationsMask operations_allowed, |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
525 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 525 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
526 }; | 526 }; |
527 | 527 |
528 #if defined(COMPILER_MSVC) | 528 #if defined(COMPILER_MSVC) |
529 #pragma warning(pop) | 529 #pragma warning(pop) |
530 #endif | 530 #endif |
531 | 531 |
532 } // namespace content | 532 } // namespace content |
533 | 533 |
534 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 534 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |