| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 547 const std::wstring& source_id); | 547 const std::wstring& source_id); |
| 548 | 548 |
| 549 void OnUpdateInspectorSettings(const std::string& raw_settings); | 549 void OnUpdateInspectorSettings(const std::string& raw_settings); |
| 550 void OnForwardToDevToolsAgent(const IPC::Message& message); | 550 void OnForwardToDevToolsAgent(const IPC::Message& message); |
| 551 void OnForwardToDevToolsClient(const IPC::Message& message); | 551 void OnForwardToDevToolsClient(const IPC::Message& message); |
| 552 void OnActivateDevToolsWindow(); | 552 void OnActivateDevToolsWindow(); |
| 553 void OnCloseDevToolsWindow(); | 553 void OnCloseDevToolsWindow(); |
| 554 void OnDockDevToolsWindow(); | 554 void OnDockDevToolsWindow(); |
| 555 void OnUndockDevToolsWindow(); | 555 void OnUndockDevToolsWindow(); |
| 556 void OnToggleInspectElementMode(bool enabled); | 556 void OnToggleInspectElementMode(bool enabled); |
| 557 void OnDevToolsRuntimeFeatureStateChanged(const std::string& feature, |
| 558 bool enabled); |
| 557 | 559 |
| 558 void OnUserMetricsRecordAction(const std::wstring& action); | 560 void OnUserMetricsRecordAction(const std::wstring& action); |
| 559 void OnMissingPluginStatus(int status); | 561 void OnMissingPluginStatus(int status); |
| 560 void OnCrashedPlugin(const FilePath& plugin_path); | 562 void OnCrashedPlugin(const FilePath& plugin_path); |
| 561 | 563 |
| 562 void OnReceivedSavableResourceLinksForCurrentPage( | 564 void OnReceivedSavableResourceLinksForCurrentPage( |
| 563 const std::vector<GURL>& resources_list, | 565 const std::vector<GURL>& resources_list, |
| 564 const std::vector<GURL>& referrers_list, | 566 const std::vector<GURL>& referrers_list, |
| 565 const std::vector<GURL>& frames_list); | 567 const std::vector<GURL>& frames_list); |
| 566 | 568 |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 660 // While in this mode, mouse click is converted into InspectElement | 662 // While in this mode, mouse click is converted into InspectElement |
| 661 // command. | 663 // command. |
| 662 bool in_inspect_element_mode_; | 664 bool in_inspect_element_mode_; |
| 663 | 665 |
| 664 NotificationRegistrar registrar_; | 666 NotificationRegistrar registrar_; |
| 665 | 667 |
| 666 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 668 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 667 }; | 669 }; |
| 668 | 670 |
| 669 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 671 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |