| 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 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 | 637 |
| 638 void OnShowDesktopNotification( | 638 void OnShowDesktopNotification( |
| 639 const ViewHostMsg_ShowNotification_Params& params); | 639 const ViewHostMsg_ShowNotification_Params& params); |
| 640 void OnCancelDesktopNotification(int notification_id); | 640 void OnCancelDesktopNotification(int notification_id); |
| 641 void OnRequestNotificationPermission(const GURL& origin, int callback_id); | 641 void OnRequestNotificationPermission(const GURL& origin, int callback_id); |
| 642 | 642 |
| 643 void OnExtensionRequest(const ViewHostMsg_DomMessage_Params& params); | 643 void OnExtensionRequest(const ViewHostMsg_DomMessage_Params& params); |
| 644 void OnExtensionPostMessage(int port_id, const std::string& message); | 644 void OnExtensionPostMessage(int port_id, const std::string& message); |
| 645 void OnAccessibilityFocusChange(int acc_obj_id); | 645 void OnAccessibilityFocusChange(int acc_obj_id); |
| 646 void OnAccessibilityObjectStateChange(int acc_obj_id); | 646 void OnAccessibilityObjectStateChange(int acc_obj_id); |
| 647 void OnAccessibilityObjectChildrenChange( |
| 648 const std::vector<webkit_glue::WebAccessibility>& acc_changes); |
| 647 void OnAccessibilityTree(const webkit_glue::WebAccessibility& tree); | 649 void OnAccessibilityTree(const webkit_glue::WebAccessibility& tree); |
| 648 void OnCSSInserted(); | 650 void OnCSSInserted(); |
| 649 void OnPageContents(const GURL& url, | 651 void OnPageContents(const GURL& url, |
| 650 int32 page_id, | 652 int32 page_id, |
| 651 const string16& contents, | 653 const string16& contents, |
| 652 const std::string& language, | 654 const std::string& language, |
| 653 bool page_translatable); | 655 bool page_translatable); |
| 654 void OnPageTranslated(int32 page_id, | 656 void OnPageTranslated(int32 page_id, |
| 655 const std::string& original_lang, | 657 const std::string& original_lang, |
| 656 const std::string& translated_lang, | 658 const std::string& translated_lang, |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 741 int autofill_query_id_; | 743 int autofill_query_id_; |
| 742 std::vector<string16> autofill_values_; | 744 std::vector<string16> autofill_values_; |
| 743 std::vector<string16> autofill_labels_; | 745 std::vector<string16> autofill_labels_; |
| 744 std::vector<string16> autofill_icons_; | 746 std::vector<string16> autofill_icons_; |
| 745 std::vector<int> autofill_unique_ids_; | 747 std::vector<int> autofill_unique_ids_; |
| 746 | 748 |
| 747 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); | 749 DISALLOW_COPY_AND_ASSIGN(RenderViewHost); |
| 748 }; | 750 }; |
| 749 | 751 |
| 750 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ | 752 #endif // CHROME_BROWSER_RENDERER_HOST_RENDER_VIEW_HOST_H_ |
| OLD | NEW |