Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(119)

Side by Side Diff: content/browser/web_contents/web_contents_impl.h

Issue 64913002: Transfer date/time value to chooser as double (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@datetime3
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « content/browser/android/date_time_chooser_android.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698