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

Side by Side Diff: chrome/browser/ui/views/external_tab_container_win.h

Issue 23593006: Add support for datalist to input type color Base URL: https://chromium.googlesource.com/chromium/src.git@colorstretch
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 | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/views/external_tab_container_win.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 CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ 5 #ifndef CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_
6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ 6 #define CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_
7 7
8 #include <map> 8 #include <map>
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 virtual bool HandleContextMenu( 140 virtual bool HandleContextMenu(
141 const content::ContextMenuParams& params) OVERRIDE; 141 const content::ContextMenuParams& params) OVERRIDE;
142 virtual void BeforeUnloadFired(content::WebContents* tab, 142 virtual void BeforeUnloadFired(content::WebContents* tab,
143 bool proceed, 143 bool proceed,
144 bool* proceed_to_fire_unload) OVERRIDE; 144 bool* proceed_to_fire_unload) OVERRIDE;
145 virtual content::JavaScriptDialogManager* 145 virtual content::JavaScriptDialogManager*
146 GetJavaScriptDialogManager() OVERRIDE; 146 GetJavaScriptDialogManager() OVERRIDE;
147 virtual void ShowRepostFormWarningDialog( 147 virtual void ShowRepostFormWarningDialog(
148 content::WebContents* source) OVERRIDE; 148 content::WebContents* source) OVERRIDE;
149 virtual content::ColorChooser* OpenColorChooser( 149 virtual content::ColorChooser* OpenColorChooser(
150 content::WebContents* web_contents, SkColor color) OVERRIDE; 150 content::WebContents* web_contents,
151 SkColor color,
152 const std::vector<SkColor>& suggestions,
153 const std::vector<string16>& suggestion_labels) OVERRIDE;
151 virtual void RunFileChooser( 154 virtual void RunFileChooser(
152 content::WebContents* tab, 155 content::WebContents* tab,
153 const content::FileChooserParams& params) OVERRIDE; 156 const content::FileChooserParams& params) OVERRIDE;
154 virtual void EnumerateDirectory(content::WebContents* tab, 157 virtual void EnumerateDirectory(content::WebContents* tab,
155 int request_id, 158 int request_id,
156 const base::FilePath& path) OVERRIDE; 159 const base::FilePath& path) OVERRIDE;
157 virtual void JSOutOfMemory(content::WebContents* tab); 160 virtual void JSOutOfMemory(content::WebContents* tab);
158 virtual void RegisterProtocolHandler(content::WebContents* tab, 161 virtual void RegisterProtocolHandler(content::WebContents* tab,
159 const std::string& protocol, 162 const std::string& protocol,
160 const GURL& url, 163 const GURL& url,
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 return false; 404 return false;
402 } 405 }
403 406
404 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, 407 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed,
405 bool* proceed_to_fire_unload) { 408 bool* proceed_to_fire_unload) {
406 NOTREACHED(); 409 NOTREACHED();
407 } 410 }
408 }; 411 };
409 412
410 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_ 413 #endif // CHROME_BROWSER_UI_VIEWS_EXTERNAL_TAB_CONTAINER_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/browser.cc ('k') | chrome/browser/ui/views/external_tab_container_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698