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 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
632 int number_of_matches, | 632 int number_of_matches, |
633 const gfx::Rect& selection_rect, | 633 const gfx::Rect& selection_rect, |
634 int active_match_ordinal, | 634 int active_match_ordinal, |
635 bool final_update); | 635 bool final_update); |
636 #if defined(OS_ANDROID) | 636 #if defined(OS_ANDROID) |
637 void OnFindMatchRectsReply(int version, | 637 void OnFindMatchRectsReply(int version, |
638 const std::vector<gfx::RectF>& rects, | 638 const std::vector<gfx::RectF>& rects, |
639 const gfx::RectF& active_rect); | 639 const gfx::RectF& active_rect); |
640 | 640 |
641 void OnOpenDateTimeDialog( | 641 void OnOpenDateTimeDialog( |
| 642 int identifier, |
642 const ViewHostMsg_DateTimeDialogValue_Params& value); | 643 const ViewHostMsg_DateTimeDialogValue_Params& value); |
643 void OnJavaBridgeGetChannelHandle(IPC::Message* reply_msg); | 644 void OnJavaBridgeGetChannelHandle(IPC::Message* reply_msg); |
644 #endif | 645 #endif |
645 void OnCrashedPlugin(const base::FilePath& plugin_path, | 646 void OnCrashedPlugin(const base::FilePath& plugin_path, |
646 base::ProcessId plugin_pid); | 647 base::ProcessId plugin_pid); |
647 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); | 648 void OnAppCacheAccessed(const GURL& manifest_url, bool blocked_by_policy); |
648 void OnOpenColorChooser(int color_chooser_id, SkColor color); | 649 void OnOpenColorChooser(int color_chooser_id, SkColor color); |
649 void OnEndColorChooser(int color_chooser_id); | 650 void OnEndColorChooser(int color_chooser_id); |
650 void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color); | 651 void OnSetSelectedColorInColorChooser(int color_chooser_id, SkColor color); |
651 void OnPepperPluginHung(int plugin_child_id, | 652 void OnPepperPluginHung(int plugin_child_id, |
(...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
985 // Maps the ids of pending image downloads to their callbacks | 986 // Maps the ids of pending image downloads to their callbacks |
986 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; | 987 typedef std::map<int, ImageDownloadCallback> ImageDownloadMap; |
987 ImageDownloadMap image_download_map_; | 988 ImageDownloadMap image_download_map_; |
988 | 989 |
989 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); | 990 DISALLOW_COPY_AND_ASSIGN(WebContentsImpl); |
990 }; | 991 }; |
991 | 992 |
992 } // namespace content | 993 } // namespace content |
993 | 994 |
994 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ | 995 #endif // CONTENT_BROWSER_WEB_CONTENTS_WEB_CONTENTS_IMPL_H_ |
OLD | NEW |