OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 #include <set> | 9 #include <set> |
10 #include <string> | 10 #include <string> |
(...skipping 699 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
710 | 710 |
711 void OnOpenDateTimeDialog( | 711 void OnOpenDateTimeDialog( |
712 const ViewHostMsg_DateTimeDialogValue_Params& value); | 712 const ViewHostMsg_DateTimeDialogValue_Params& value); |
713 void OnJavaBridgeGetChannelHandle(IPC::Message* reply_msg); | 713 void OnJavaBridgeGetChannelHandle(IPC::Message* reply_msg); |
714 #endif | 714 #endif |
715 void OnPepperPluginHung(int plugin_child_id, | 715 void OnPepperPluginHung(int plugin_child_id, |
716 const base::FilePath& path, | 716 const base::FilePath& path, |
717 bool is_hung); | 717 bool is_hung); |
718 void OnPluginCrashed(const base::FilePath& plugin_path, | 718 void OnPluginCrashed(const base::FilePath& plugin_path, |
719 base::ProcessId plugin_pid); | 719 base::ProcessId plugin_pid); |
| 720 void OnDomOperationResponse(const std::string& json_string, |
| 721 int automation_id); |
720 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); | 722 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); |
721 void OnOpenColorChooser(int color_chooser_id, | 723 void OnOpenColorChooser(int color_chooser_id, |
722 SkColor color, | 724 SkColor color, |
723 const std::vector<ColorSuggestion>& suggestions); | 725 const std::vector<ColorSuggestion>& suggestions); |
724 void OnEndColorChooser(int color_chooser_id); | 726 void OnEndColorChooser(int color_chooser_id); |
725 void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color); | 727 void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color); |
726 void OnWebUISend(const GURL& source_url, | 728 void OnWebUISend(const GURL& source_url, |
727 const std::string& name, | 729 const std::string& name, |
728 const base::ListValue& args); | 730 const base::ListValue& args); |
729 void OnRequestPpapiBrokerPermission(int routing_id, | 731 void OnRequestPpapiBrokerPermission(int routing_id, |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 // Whether this WebContents is responsible for displaying a subframe in a | 1062 // Whether this WebContents is responsible for displaying a subframe in a |
1061 // different process from its parent page. | 1063 // different process from its parent page. |
1062 bool is_subframe_; | 1064 bool is_subframe_; |
1063 | 1065 |
1064 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 1066 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
1065 }; | 1067 }; |
1066 | 1068 |
1067 } // namespace content | 1069 } // namespace content |
1068 | 1070 |
1069 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 1071 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |