| 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 481 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 492 void OnTakeFocus(bool reverse); | 492 void OnTakeFocus(bool reverse); |
| 493 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); | 493 void OnMsgPageHasOSDD(int32 page_id, const GURL& doc_url, bool autodetected); |
| 494 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); | 494 void DidPrintPage(const ViewHostMsg_DidPrintPage_Params& params); |
| 495 void OnAddMessageToConsole(const std::wstring& message, | 495 void OnAddMessageToConsole(const std::wstring& message, |
| 496 int32 line_no, | 496 int32 line_no, |
| 497 const std::wstring& source_id); | 497 const std::wstring& source_id); |
| 498 | 498 |
| 499 void OnUpdateInspectorSettings(const std::wstring& raw_settings); | 499 void OnUpdateInspectorSettings(const std::wstring& raw_settings); |
| 500 void OnForwardToDevToolsAgent(const IPC::Message& message); | 500 void OnForwardToDevToolsAgent(const IPC::Message& message); |
| 501 void OnForwardToDevToolsClient(const IPC::Message& message); | 501 void OnForwardToDevToolsClient(const IPC::Message& message); |
| 502 void OnActivateDevToolsWindow(); |
| 502 void OnCloseDevToolsWindow(); | 503 void OnCloseDevToolsWindow(); |
| 503 void OnDockDevToolsWindow(); | 504 void OnDockDevToolsWindow(); |
| 504 void OnUndockDevToolsWindow(); | 505 void OnUndockDevToolsWindow(); |
| 505 | 506 |
| 506 void OnUserMetricsRecordAction(const std::wstring& action); | 507 void OnUserMetricsRecordAction(const std::wstring& action); |
| 507 void OnMissingPluginStatus(int status); | 508 void OnMissingPluginStatus(int status); |
| 508 void OnMessageReceived(IPC::Message* msg) { } | 509 void OnMessageReceived(IPC::Message* msg) { } |
| 509 | 510 |
| 510 void OnReceivedSavableResourceLinksForCurrentPage( | 511 void OnReceivedSavableResourceLinksForCurrentPage( |
| 511 const std::vector<GURL>& resources_list, | 512 const std::vector<GURL>& resources_list, |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 589 | 590 |
| 590 bool are_javascript_messages_suppressed_; | 591 bool are_javascript_messages_suppressed_; |
| 591 | 592 |
| 592 // True if the render view can be shut down suddenly. | 593 // True if the render view can be shut down suddenly. |
| 593 bool sudden_termination_allowed_; | 594 bool sudden_termination_allowed_; |
| 594 | 595 |
| 595 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 596 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 596 }; | 597 }; |
| 597 | 598 |
| 598 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 599 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |