| 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 <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 class AutomationTabHelper; | 25 class AutomationTabHelper; |
| 26 class BlockedContentTabHelper; | 26 class BlockedContentTabHelper; |
| 27 class BookmarkTabHelper; | 27 class BookmarkTabHelper; |
| 28 class ConstrainedWindowTabHelper; | 28 class ConstrainedWindowTabHelper; |
| 29 class DownloadRequestLimiterObserver; | 29 class DownloadRequestLimiterObserver; |
| 30 class Extension; | 30 class Extension; |
| 31 class ExtensionTabHelper; | 31 class ExtensionTabHelper; |
| 32 class ExtensionWebNavigationTabObserver; | 32 class ExtensionWebNavigationTabObserver; |
| 33 class ExternalProtocolObserver; | 33 class ExternalProtocolObserver; |
| 34 class FaviconTabHelper; | 34 class FaviconTabHelper; |
| 35 class FileSelectObserver; | |
| 36 class FindTabHelper; | 35 class FindTabHelper; |
| 37 class InfoBarTabHelper; | 36 class InfoBarTabHelper; |
| 38 class HistoryTabHelper; | 37 class HistoryTabHelper; |
| 39 class NavigationController; | 38 class NavigationController; |
| 40 class OmniboxSearchHint; | 39 class OmniboxSearchHint; |
| 41 class PasswordManager; | 40 class PasswordManager; |
| 42 class PasswordManagerDelegate; | 41 class PasswordManagerDelegate; |
| 43 class PluginObserver; | 42 class PluginObserver; |
| 44 class Profile; | 43 class Profile; |
| 45 class RestoreTabHelper; | 44 class RestoreTabHelper; |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 | 332 |
| 334 // The supporting objects need to outlive the TabContents dtor (as they may | 333 // The supporting objects need to outlive the TabContents dtor (as they may |
| 335 // be called upon during its execution). As a result, this must come last | 334 // be called upon during its execution). As a result, this must come last |
| 336 // in the list. | 335 // in the list. |
| 337 scoped_ptr<TabContents> tab_contents_; | 336 scoped_ptr<TabContents> tab_contents_; |
| 338 | 337 |
| 339 DISALLOW_COPY_AND_ASSIGN(TabContentsWrapper); | 338 DISALLOW_COPY_AND_ASSIGN(TabContentsWrapper); |
| 340 }; | 339 }; |
| 341 | 340 |
| 342 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ | 341 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_WRAPPER_H_ |
| OLD | NEW |