| 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 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| (...skipping 545 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 556 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
| 557 void OnAddMessageToConsole(const std::wstring& message, | 557 void OnAddMessageToConsole(const std::wstring& message, |
| 558 int32 line_no, | 558 int32 line_no, |
| 559 const std::wstring& source_id); | 559 const std::wstring& source_id); |
| 560 | 560 |
| 561 void OnUpdateInspectorSettings(const std::string& raw_settings); | 561 void OnUpdateInspectorSettings(const std::string& raw_settings); |
| 562 void OnForwardToDevToolsAgent(const IPC::Message& message); | 562 void OnForwardToDevToolsAgent(const IPC::Message& message); |
| 563 void OnForwardToDevToolsClient(const IPC::Message& message); | 563 void OnForwardToDevToolsClient(const IPC::Message& message); |
| 564 void OnActivateDevToolsWindow(); | 564 void OnActivateDevToolsWindow(); |
| 565 void OnCloseDevToolsWindow(); | 565 void OnCloseDevToolsWindow(); |
| 566 void OnDockDevToolsWindow(); | 566 void OnRequestDockDevToolsWindow(); |
| 567 void OnUndockDevToolsWindow(); | 567 void OnRequestUndockDevToolsWindow(); |
| 568 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature, | 568 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature, |
| 569 bool enabled); | 569 bool enabled); |
| 570 | 570 |
| 571 void OnUserMetricsRecordAction(const std::string& action); | 571 void OnUserMetricsRecordAction(const std::string& action); |
| 572 void OnMissingPluginStatus(int status); | 572 void OnMissingPluginStatus(int status); |
| 573 void OnCrashedPlugin(const FilePath& plugin_path); | 573 void OnCrashedPlugin(const FilePath& plugin_path); |
| 574 | 574 |
| 575 void OnReceivedSavableResourceLinksForCurrentPage( | 575 void OnReceivedSavableResourceLinksForCurrentPage( |
| 576 const std::vector<GURL>& resources_list, | 576 const std::vector<GURL>& resources_list, |
| 577 const std::vector<GURL>& referrers_list, | 577 const std::vector<GURL>& referrers_list, |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 // True if the render view can be shut down suddenly. | 684 // True if the render view can be shut down suddenly. |
| 685 bool sudden_termination_allowed_; | 685 bool sudden_termination_allowed_; |
| 686 | 686 |
| 687 // The session storage namespace id to be used by the associated render view. | 687 // The session storage namespace id to be used by the associated render view. |
| 688 int64 session_storage_namespace_id_; | 688 int64 session_storage_namespace_id_; |
| 689 | 689 |
| 690 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 690 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 691 }; | 691 }; |
| 692 | 692 |
| 693 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 693 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |