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 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 429 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
440 void OnMsgUpdateTitle(int32 page_id, | 440 void OnMsgUpdateTitle(int32 page_id, |
441 const string16& title, | 441 const string16& title, |
442 WebKit::WebTextDirection title_direction); | 442 WebKit::WebTextDirection title_direction); |
443 void OnMsgUpdateEncoding(const std::string& encoding); | 443 void OnMsgUpdateEncoding(const std::string& encoding); |
444 void OnMsgUpdateTargetURL(int32 page_id, const GURL& url); | 444 void OnMsgUpdateTargetURL(int32 page_id, const GURL& url); |
445 void OnMsgClose(); | 445 void OnMsgClose(); |
446 void OnMsgRequestMove(const gfx::Rect& pos); | 446 void OnMsgRequestMove(const gfx::Rect& pos); |
447 void OnMsgDidStartLoading(); | 447 void OnMsgDidStartLoading(); |
448 void OnMsgDidStopLoading(); | 448 void OnMsgDidStopLoading(); |
449 void OnMsgDidChangeLoadProgress(double load_progress); | 449 void OnMsgDidChangeLoadProgress(double load_progress); |
450 void OnMsgDocumentAvailableInFrame(bool main_frame, | 450 void OnMsgDocumentAvailableInMainFrame(); |
451 const GURL& source_url); | |
452 void OnMsgDocumentOnLoadCompletedInMainFrame(int32 page_id); | 451 void OnMsgDocumentOnLoadCompletedInMainFrame(int32 page_id); |
453 void OnMsgContextMenu(const ContextMenuParams& params); | 452 void OnMsgContextMenu(const ContextMenuParams& params); |
454 void OnMsgToggleFullscreen(bool enter_fullscreen); | 453 void OnMsgToggleFullscreen(bool enter_fullscreen); |
455 void OnMsgOpenURL(const GURL& url, | 454 void OnMsgOpenURL(const GURL& url, |
456 const Referrer& referrer, | 455 const Referrer& referrer, |
457 WindowOpenDisposition disposition, | 456 WindowOpenDisposition disposition, |
458 int64 source_frame_id); | 457 int64 source_frame_id); |
459 void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size); | 458 void OnMsgDidContentsPreferredSizeChange(const gfx::Size& new_size); |
460 void OnMsgDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, | 459 void OnMsgDidChangeScrollbarsForMainFrame(bool has_horizontal_scrollbar, |
461 bool has_vertical_scrollbar); | 460 bool has_vertical_scrollbar); |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
627 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); | 626 DISALLOW_COPY_AND_ASSIGN(RenderViewHostImpl); |
628 }; | 627 }; |
629 | 628 |
630 #if defined(COMPILER_MSVC) | 629 #if defined(COMPILER_MSVC) |
631 #pragma warning(pop) | 630 #pragma warning(pop) |
632 #endif | 631 #endif |
633 | 632 |
634 } // namespace content | 633 } // namespace content |
635 | 634 |
636 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ | 635 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_IMPL_H_ |
OLD | NEW |