| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |