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

Side by Side Diff: content/renderer/render_view_impl.h

Issue 23691036: Add support for datalist to input type color Base URL: https://chromium.googlesource.com/chromium/src.git@color
Patch Set: Created 7 years, 3 months 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
« no previous file with comments | « content/public/common/color_suggestion.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_RENDERER_RENDER_VIEW_IMPL_H_ 5 #ifndef CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 6 #define CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
7 7
8 #include <deque> 8 #include <deque>
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
(...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after
461 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*); 461 virtual void initializeHelperPluginWebFrame(WebKit::WebHelperPlugin*);
462 virtual void didStartLoading(); 462 virtual void didStartLoading();
463 virtual void didStopLoading(); 463 virtual void didStopLoading();
464 virtual void didChangeLoadProgress(WebKit::WebFrame* frame, 464 virtual void didChangeLoadProgress(WebKit::WebFrame* frame,
465 double load_progress); 465 double load_progress);
466 virtual void didCancelCompositionOnSelectionChange(); 466 virtual void didCancelCompositionOnSelectionChange();
467 virtual void didChangeSelection(bool is_selection_empty); 467 virtual void didChangeSelection(bool is_selection_empty);
468 virtual void didExecuteCommand(const WebKit::WebString& command_name); 468 virtual void didExecuteCommand(const WebKit::WebString& command_name);
469 virtual bool handleCurrentKeyboardEvent(); 469 virtual bool handleCurrentKeyboardEvent();
470 virtual WebKit::WebColorChooser* createColorChooser( 470 virtual WebKit::WebColorChooser* createColorChooser(
471 WebKit::WebColorChooserClient*, const WebKit::WebColor& initial_color); 471 WebKit::WebColorChooserClient*,
472 const WebKit::WebColor& initial_color,
473 const WebKit::WebVector<WebKit::WebColorSuggestion>& suggestions);
472 virtual bool runFileChooser( 474 virtual bool runFileChooser(
473 const WebKit::WebFileChooserParams& params, 475 const WebKit::WebFileChooserParams& params,
474 WebKit::WebFileChooserCompletion* chooser_completion); 476 WebKit::WebFileChooserCompletion* chooser_completion);
475 virtual void runModalAlertDialog(WebKit::WebFrame* frame, 477 virtual void runModalAlertDialog(WebKit::WebFrame* frame,
476 const WebKit::WebString& message); 478 const WebKit::WebString& message);
477 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame, 479 virtual bool runModalConfirmDialog(WebKit::WebFrame* frame,
478 const WebKit::WebString& message); 480 const WebKit::WebString& message);
479 virtual bool runModalPromptDialog(WebKit::WebFrame* frame, 481 virtual bool runModalPromptDialog(WebKit::WebFrame* frame,
480 const WebKit::WebString& message, 482 const WebKit::WebString& message,
481 const WebKit::WebString& default_value, 483 const WebKit::WebString& default_value,
(...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after
1573 // use the Observer interface to filter IPC messages and receive frame change 1575 // use the Observer interface to filter IPC messages and receive frame change
1574 // notifications. 1576 // notifications.
1575 // --------------------------------------------------------------------------- 1577 // ---------------------------------------------------------------------------
1576 1578
1577 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl); 1579 DISALLOW_COPY_AND_ASSIGN(RenderViewImpl);
1578 }; 1580 };
1579 1581
1580 } // namespace content 1582 } // namespace content
1581 1583
1582 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_ 1584 #endif // CONTENT_RENDERER_RENDER_VIEW_IMPL_H_
OLDNEW
« no previous file with comments | « content/public/common/color_suggestion.cc ('k') | content/renderer/render_view_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698