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

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

Issue 8343070: Support dispositon attribute. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Try again 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
« no previous file with comments | « no previous file | chrome/browser/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) 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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 const FilePath& path); 164 const FilePath& path);
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); 169 const string16& title);
170 virtual void RegisterIntentHandler(TabContents* tab, 170 virtual void RegisterIntentHandler(TabContents* tab,
171 const string16& action, 171 const string16& action,
172 const string16& type, 172 const string16& type,
173 const string16& href, 173 const string16& href,
174 const string16& title) OVERRIDE; 174 const string16& title,
175 const string16& disposition) OVERRIDE;
175 virtual void WebIntentDispatch(TabContents* tab, 176 virtual void WebIntentDispatch(TabContents* tab,
176 int routing_id, 177 int routing_id,
177 const webkit_glue::WebIntentData& intent, 178 const webkit_glue::WebIntentData& intent,
178 int intent_id) OVERRIDE; 179 int intent_id) OVERRIDE;
179 virtual void FindReply(TabContents* tab, 180 virtual void FindReply(TabContents* tab,
180 int request_id, 181 int request_id,
181 int number_of_matches, 182 int number_of_matches,
182 const gfx::Rect& selection_rect, 183 const gfx::Rect& selection_rect,
183 int active_match_ordinal, 184 int active_match_ordinal,
184 bool final_update); 185 bool final_update);
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 return false; 413 return false;
413 } 414 }
414 415
415 virtual void BeforeUnloadFired(TabContents* tab, bool proceed, 416 virtual void BeforeUnloadFired(TabContents* tab, bool proceed,
416 bool* proceed_to_fire_unload) { 417 bool* proceed_to_fire_unload) {
417 NOTREACHED(); 418 NOTREACHED();
418 } 419 }
419 }; 420 };
420 421
421 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ 422 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/external_tab_container_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698