OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
14 #include "base/scoped_ptr.h" | 14 #include "base/scoped_ptr.h" |
15 #include "chrome/browser/automation/automation_resource_message_filter.h" | 15 #include "chrome/browser/automation/automation_resource_message_filter.h" |
16 #include "chrome/browser/browser.h" | |
17 #include "chrome/browser/net/chrome_url_request_context.h" | 16 #include "chrome/browser/net/chrome_url_request_context.h" |
18 #include "chrome/browser/tab_contents/tab_contents_delegate.h" | 17 #include "chrome/browser/tab_contents/tab_contents_delegate.h" |
| 18 #include "chrome/browser/ui/browser.h" |
19 #include "chrome/browser/views/frame/browser_bubble_host.h" | 19 #include "chrome/browser/views/frame/browser_bubble_host.h" |
20 #include "chrome/browser/views/infobars/infobar_container.h" | 20 #include "chrome/browser/views/infobars/infobar_container.h" |
21 #include "chrome/browser/views/unhandled_keyboard_event_handler.h" | 21 #include "chrome/browser/views/unhandled_keyboard_event_handler.h" |
22 #include "chrome/common/navigation_types.h" | 22 #include "chrome/common/navigation_types.h" |
23 #include "chrome/common/notification_observer.h" | 23 #include "chrome/common/notification_observer.h" |
24 #include "chrome/common/notification_registrar.h" | 24 #include "chrome/common/notification_registrar.h" |
25 #include "views/accelerator.h" | 25 #include "views/accelerator.h" |
26 #include "views/widget/widget_win.h" | 26 #include "views/widget/widget_win.h" |
27 | 27 |
28 class AutomationProvider; | 28 class AutomationProvider; |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
402 return false; | 402 return false; |
403 } | 403 } |
404 | 404 |
405 virtual void BeforeUnloadFired(TabContents* tab, bool proceed, | 405 virtual void BeforeUnloadFired(TabContents* tab, bool proceed, |
406 bool* proceed_to_fire_unload) { | 406 bool* proceed_to_fire_unload) { |
407 NOTREACHED(); | 407 NOTREACHED(); |
408 } | 408 } |
409 }; | 409 }; |
410 | 410 |
411 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ | 411 #endif // CHROME_BROWSER_EXTERNAL_TAB_CONTAINER_WIN_H_ |
OLD | NEW |