| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| 6 #define CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 6 #define CONTENT_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 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); | 587 void OnUpdateDragCursor(WebKit::WebDragOperation drag_operation); |
| 588 void OnTakeFocus(bool reverse); | 588 void OnTakeFocus(bool reverse); |
| 589 void OnAddMessageToConsole(const std::wstring& message, | 589 void OnAddMessageToConsole(const std::wstring& message, |
| 590 int32 line_no, | 590 int32 line_no, |
| 591 const std::wstring& source_id); | 591 const std::wstring& source_id); |
| 592 void OnUpdateInspectorSetting(const std::string& key, | 592 void OnUpdateInspectorSetting(const std::string& key, |
| 593 const std::string& value); | 593 const std::string& value); |
| 594 void OnMsgShouldCloseACK(bool proceed); | 594 void OnMsgShouldCloseACK(bool proceed); |
| 595 | 595 |
| 596 void OnExtensionRequest(const ExtensionHostMsg_DomMessage_Params& params); | 596 void OnExtensionRequest(const ExtensionHostMsg_DomMessage_Params& params); |
| 597 void OnExtensionPostMessage(int port_id, const std::string& message); | |
| 598 void OnAccessibilityNotifications( | 597 void OnAccessibilityNotifications( |
| 599 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); | 598 const std::vector<ViewHostMsg_AccessibilityNotification_Params>& params); |
| 600 void OnCSSInserted(); | 599 void OnCSSInserted(); |
| 601 void OnContentBlocked(ContentSettingsType type, | 600 void OnContentBlocked(ContentSettingsType type, |
| 602 const std::string& resource_identifier); | 601 const std::string& resource_identifier); |
| 603 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); | 602 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); |
| 604 void OnWebDatabaseAccessed(const GURL& url, | 603 void OnWebDatabaseAccessed(const GURL& url, |
| 605 const string16& name, | 604 const string16& name, |
| 606 const string16& display_name, | 605 const string16& display_name, |
| 607 unsigned long estimated_size, | 606 unsigned long estimated_size, |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 698 // The termination status of the last render view that terminated. | 697 // The termination status of the last render view that terminated. |
| 699 base::TerminationStatus render_view_termination_status_; | 698 base::TerminationStatus render_view_termination_status_; |
| 700 | 699 |
| 701 // The enabled/disabled states of various commands. | 700 // The enabled/disabled states of various commands. |
| 702 std::map<RenderViewCommand, CommandState> command_states_; | 701 std::map<RenderViewCommand, CommandState> command_states_; |
| 703 | 702 |
| 704 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 703 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 705 }; | 704 }; |
| 706 | 705 |
| 707 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 706 #endif // CONTENT_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |