OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 5 #ifndef CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
657 void OnForwardToDevToolsAgent(const IPC::Message& message); | 657 void OnForwardToDevToolsAgent(const IPC::Message& message); |
658 void OnForwardToDevToolsClient(const IPC::Message& message); | 658 void OnForwardToDevToolsClient(const IPC::Message& message); |
659 void OnActivateDevToolsWindow(); | 659 void OnActivateDevToolsWindow(); |
660 void OnCloseDevToolsWindow(); | 660 void OnCloseDevToolsWindow(); |
661 void OnRequestDockDevToolsWindow(); | 661 void OnRequestDockDevToolsWindow(); |
662 void OnRequestUndockDevToolsWindow(); | 662 void OnRequestUndockDevToolsWindow(); |
663 void OnDevToolsRuntimePropertyChanged(const std::string& name, | 663 void OnDevToolsRuntimePropertyChanged(const std::string& name, |
664 const std::string& value); | 664 const std::string& value); |
665 void OnMissingPluginStatus(int status); | 665 void OnMissingPluginStatus(int status); |
666 void OnCrashedPlugin(const FilePath& plugin_path); | 666 void OnCrashedPlugin(const FilePath& plugin_path); |
667 void OnDisabledOutdatedPlugin(const string16& name, const GURL& update_url); | 667 void OnBlockedOutdatedPlugin(const string16& name, const GURL& update_url); |
668 | 668 |
669 void OnReceivedSavableResourceLinksForCurrentPage( | 669 void OnReceivedSavableResourceLinksForCurrentPage( |
670 const std::vector<GURL>& resources_list, | 670 const std::vector<GURL>& resources_list, |
671 const std::vector<GURL>& referrers_list, | 671 const std::vector<GURL>& referrers_list, |
672 const std::vector<GURL>& frames_list); | 672 const std::vector<GURL>& frames_list); |
673 | 673 |
674 void OnReceivedSerializedHtmlData(const GURL& frame_url, | 674 void OnReceivedSerializedHtmlData(const GURL& frame_url, |
675 const std::string& data, | 675 const std::string& data, |
676 int32 status); | 676 int32 status); |
677 | 677 |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
824 // The most recently received accessibility tree - for unit testing only. | 824 // The most recently received accessibility tree - for unit testing only. |
825 webkit_glue::WebAccessibility accessibility_tree_; | 825 webkit_glue::WebAccessibility accessibility_tree_; |
826 | 826 |
827 // The termination status of the last render view that terminated. | 827 // The termination status of the last render view that terminated. |
828 base::TerminationStatus render_view_termination_status_; | 828 base::TerminationStatus render_view_termination_status_; |
829 | 829 |
830 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 830 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
831 }; | 831 }; |
832 | 832 |
833 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 833 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
OLD | NEW |