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

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

Issue 8622005: Get rid of view_messages.h include from chrome since TabContentsDelegate used a struct from it (V... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_EXTERNAL_TAB_CONTAINER_WIN_H_ 5 #ifndef CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 6 #define CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
7 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <string> 10 #include <string>
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 virtual bool HandleContextMenu(const ContextMenuParams& params) OVERRIDE; 151 virtual bool HandleContextMenu(const ContextMenuParams& params) OVERRIDE;
152 virtual bool ExecuteContextMenuCommand(int command) OVERRIDE; 152 virtual bool ExecuteContextMenuCommand(int command) OVERRIDE;
153 virtual void BeforeUnloadFired(TabContents* tab, 153 virtual void BeforeUnloadFired(TabContents* tab,
154 bool proceed, 154 bool proceed,
155 bool* proceed_to_fire_unload) OVERRIDE; 155 bool* proceed_to_fire_unload) OVERRIDE;
156 virtual content::JavaScriptDialogCreator* 156 virtual content::JavaScriptDialogCreator*
157 GetJavaScriptDialogCreator() OVERRIDE; 157 GetJavaScriptDialogCreator() OVERRIDE;
158 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE; 158 virtual void ShowRepostFormWarningDialog(TabContents* tab_contents) OVERRIDE;
159 virtual void RunFileChooser( 159 virtual void RunFileChooser(
160 TabContents* tab, 160 TabContents* tab,
161 const ViewHostMsg_RunFileChooser_Params& params) OVERRIDE; 161 const content::FileChooserParams& params) OVERRIDE;
162 virtual void EnumerateDirectory(TabContents* tab, 162 virtual void EnumerateDirectory(TabContents* tab,
163 int request_id, 163 int request_id,
164 const FilePath& path) OVERRIDE; 164 const FilePath& path) OVERRIDE;
165 virtual void JSOutOfMemory(TabContents* tab); 165 virtual void JSOutOfMemory(TabContents* tab);
166 virtual void RegisterProtocolHandler(TabContents* tab, 166 virtual void RegisterProtocolHandler(TabContents* tab,
167 const std::string& protocol, 167 const std::string& protocol,
168 const GURL& url, 168 const GURL& url,
169 const string16& title) OVERRIDE; 169 const string16& title) OVERRIDE;
170 virtual void RegisterIntentHandler(TabContents* tab, 170 virtual void RegisterIntentHandler(TabContents* tab,
171 const string16& action, 171 const string16& action,
(...skipping 241 matching lines...) Expand 10 before | Expand all | Expand 10 after
413 return false; 413 return false;
414 } 414 }
415 415
416 virtual void BeforeUnloadFired(TabContents* tab, bool proceed, 416 virtual void BeforeUnloadFired(TabContents* tab, bool proceed,
417 bool* proceed_to_fire_unload) { 417 bool* proceed_to_fire_unload) {
418 NOTREACHED(); 418 NOTREACHED();
419 } 419 }
420 }; 420 };
421 421
422 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 422 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
OLDNEW
« no previous file with comments | « chrome/browser/extensions/extension_host.h ('k') | chrome/browser/external_tab_container_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698