| 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_EXTERNAL_TAB_CONTAINER_WIN_H_ | 5 #ifndef CHROME_BROWSER_EXTERNAL_TAB_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| 6 #define CHROME_BROWSER_EXTERNAL_TAB_EXTERNAL_TAB_CONTAINER_WIN_H_ | 6 #define CHROME_BROWSER_EXTERNAL_TAB_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 13 matching lines...) Expand all Loading... |
| 24 #include "content/public/browser/notification_registrar.h" | 24 #include "content/public/browser/notification_registrar.h" |
| 25 #include "content/public/browser/web_contents_delegate.h" | 25 #include "content/public/browser/web_contents_delegate.h" |
| 26 #include "content/public/browser/web_contents_observer.h" | 26 #include "content/public/browser/web_contents_observer.h" |
| 27 #include "ui/base/accelerators/accelerator.h" | 27 #include "ui/base/accelerators/accelerator.h" |
| 28 #include "ui/views/widget/native_widget_win.h" | 28 #include "ui/views/widget/native_widget_win.h" |
| 29 | 29 |
| 30 class AutomationProvider; | 30 class AutomationProvider; |
| 31 class Browser; | 31 class Browser; |
| 32 class Profile; | 32 class Profile; |
| 33 class TabContentsContainer; | 33 class TabContentsContainer; |
| 34 class TabContentsWrapper; | 34 class TabContents; |
| 35 typedef TabContents TabContentsWrapper; |
| 35 class RenderViewContextMenuViews; | 36 class RenderViewContextMenuViews; |
| 36 struct NavigationInfo; | 37 struct NavigationInfo; |
| 37 | 38 |
| 38 namespace content { | 39 namespace content { |
| 39 class WebIntentsDispatcher; | 40 class WebIntentsDispatcher; |
| 40 } | 41 } |
| 41 | 42 |
| 42 namespace ui { | 43 namespace ui { |
| 43 class ViewProp; | 44 class ViewProp; |
| 44 } | 45 } |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 return false; | 420 return false; |
| 420 } | 421 } |
| 421 | 422 |
| 422 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, | 423 virtual void BeforeUnloadFired(content::WebContents* tab, bool proceed, |
| 423 bool* proceed_to_fire_unload) { | 424 bool* proceed_to_fire_unload) { |
| 424 NOTREACHED(); | 425 NOTREACHED(); |
| 425 } | 426 } |
| 426 }; | 427 }; |
| 427 | 428 |
| 428 #endif // CHROME_BROWSER_EXTERNAL_TAB_EXTERNAL_TAB_CONTAINER_WIN_H_ | 429 #endif // CHROME_BROWSER_EXTERNAL_TAB_EXTERNAL_TAB_CONTAINER_WIN_H_ |
| OLD | NEW |