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_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ | 5 #ifndef CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
6 #define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ | 6 #define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" |
10 #include "base/scoped_ptr.h" | 11 #include "base/scoped_ptr.h" |
11 #include "base/compiler_specific.h" | |
12 #include "chrome/common/notification_registrar.h" | |
13 #include "content/browser/tab_contents/tab_contents.h" | 12 #include "content/browser/tab_contents/tab_contents.h" |
14 #include "content/browser/tab_contents/tab_contents_observer.h" | 13 #include "content/browser/tab_contents/tab_contents_observer.h" |
| 14 #include "content/common/notification_registrar.h" |
15 | 15 |
16 namespace prerender { | 16 namespace prerender { |
17 class PrerenderObserver; | 17 class PrerenderObserver; |
18 } | 18 } |
19 | 19 |
20 class Extension; | 20 class Extension; |
21 class FindTabHelper; | 21 class FindTabHelper; |
22 class NavigationController; | 22 class NavigationController; |
23 class PasswordManager; | 23 class PasswordManager; |
24 class PasswordManagerDelegate; | 24 class PasswordManagerDelegate; |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 | 150 |
151 // The supporting objects need to outlive the TabContents dtor (as they may | 151 // The supporting objects need to outlive the TabContents dtor (as they may |
152 // be called upon during its execution). As a result, this must come last | 152 // be called upon during its execution). As a result, this must come last |
153 // in the list. | 153 // in the list. |
154 scoped_ptr<TabContents> tab_contents_; | 154 scoped_ptr<TabContents> tab_contents_; |
155 | 155 |
156 DISALLOW_COPY_AND_ASSIGN(TabContentsWrapper); | 156 DISALLOW_COPY_AND_ASSIGN(TabContentsWrapper); |
157 }; | 157 }; |
158 | 158 |
159 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ | 159 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
OLD | NEW |