OLD | NEW |
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_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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 | 384 |
385 virtual content::WebContents* OpenURLFromTab( | 385 virtual content::WebContents* OpenURLFromTab( |
386 content::WebContents* source, | 386 content::WebContents* source, |
387 const content::OpenURLParams& params) OVERRIDE; | 387 const content::OpenURLParams& params) OVERRIDE; |
388 | 388 |
389 virtual void NavigationStateChanged(const content::WebContents* source, | 389 virtual void NavigationStateChanged(const content::WebContents* source, |
390 unsigned changed_flags) { | 390 unsigned changed_flags) { |
391 NOTREACHED(); | 391 NOTREACHED(); |
392 } | 392 } |
393 | 393 |
394 virtual void CloseContents(TabContents* source) { | 394 virtual void CloseContents(content::WebContents* source) { |
395 NOTREACHED(); | 395 NOTREACHED(); |
396 } | 396 } |
397 | 397 |
398 virtual void UpdateTargetURL(content::WebContents* source, int32 page_id, | 398 virtual void UpdateTargetURL(content::WebContents* source, int32 page_id, |
399 const GURL& url) { | 399 const GURL& url) { |
400 NOTREACHED(); | 400 NOTREACHED(); |
401 } | 401 } |
402 | 402 |
403 void ForwardMessageToExternalHost(const std::string& message, | 403 void ForwardMessageToExternalHost(const std::string& message, |
404 const std::string& origin, | 404 const std::string& origin, |
(...skipping 11 matching lines...) Expand all Loading... |
416 return false; | 416 return false; |
417 } | 417 } |
418 | 418 |
419 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, | 419 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, |
420 bool* proceed_to_fire_unload) { | 420 bool* proceed_to_fire_unload) { |
421 NOTREACHED(); | 421 NOTREACHED(); |
422 } | 422 } |
423 }; | 423 }; |
424 | 424 |
425 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ | 425 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ |
OLD | NEW |