| 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_UI_TAB_CONTENTS_TAB_CONTENTS_H_ | 5 #ifndef CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 6 #define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ | 6 #define CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 class FindBackendTestContentsCreator; | 34 class FindBackendTestContentsCreator; |
| 35 class FindTabHelper; | 35 class FindTabHelper; |
| 36 class GeolocationPermissionContextTests; | 36 class GeolocationPermissionContextTests; |
| 37 class HistoryTabHelper; | 37 class HistoryTabHelper; |
| 38 class HungPluginTabHelper; | 38 class HungPluginTabHelper; |
| 39 class InfoBarControllerContentsCreator; | 39 class InfoBarControllerContentsCreator; |
| 40 class InfoBarTabHelper; | 40 class InfoBarTabHelper; |
| 41 class InstantLoader; | 41 class InstantLoader; |
| 42 class NavigationMetricsRecorder; | 42 class NavigationMetricsRecorder; |
| 43 class OffscreenTabContentsCreator; | 43 class OffscreenTabContentsCreator; |
| 44 class OldBasePanelBrowserTest; | |
| 45 class OmniboxSearchHint; | 44 class OmniboxSearchHint; |
| 46 class PanelHost; | 45 class PanelHost; |
| 47 class PasswordManager; | 46 class PasswordManager; |
| 48 class PasswordManagerDelegate; | 47 class PasswordManagerDelegate; |
| 49 class PDFTabObserver; | 48 class PDFTabObserver; |
| 50 class PepperBrokerObserver; | 49 class PepperBrokerObserver; |
| 51 class PluginObserver; | 50 class PluginObserver; |
| 52 class PrefsTabHelper; | 51 class PrefsTabHelper; |
| 53 class Profile; | 52 class Profile; |
| 54 class SadTabHelper; | 53 class SadTabHelper; |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 friend class chromeos::WebUILoginView; | 156 friend class chromeos::WebUILoginView; |
| 158 friend class ChromeWebContentsHandler; | 157 friend class ChromeWebContentsHandler; |
| 159 friend class ConstrainedWebDialogDelegateBase; | 158 friend class ConstrainedWebDialogDelegateBase; |
| 160 friend class extensions::WebAuthFlow; | 159 friend class extensions::WebAuthFlow; |
| 161 friend class ExtensionTabUtil; | 160 friend class ExtensionTabUtil; |
| 162 friend class ExternalTabContainerWin; | 161 friend class ExternalTabContainerWin; |
| 163 friend class FindBackendTestContentsCreator; | 162 friend class FindBackendTestContentsCreator; |
| 164 friend class GeolocationPermissionContextTests; | 163 friend class GeolocationPermissionContextTests; |
| 165 friend class InfoBarControllerContentsCreator; | 164 friend class InfoBarControllerContentsCreator; |
| 166 friend class InstantLoader; | 165 friend class InstantLoader; |
| 167 friend class OldBasePanelBrowserTest; | |
| 168 friend class OffscreenTabContentsCreator; | 166 friend class OffscreenTabContentsCreator; |
| 169 friend class PanelHost; | 167 friend class PanelHost; |
| 170 friend class prerender::PrerenderContents; | 168 friend class prerender::PrerenderContents; |
| 171 friend class ShellWindow; | 169 friend class ShellWindow; |
| 172 friend class TabContentsTestHarness; | 170 friend class TabContentsTestHarness; |
| 173 friend class TabStripModel; | 171 friend class TabStripModel; |
| 174 friend class TabStripModelContentsCreator; | 172 friend class TabStripModelContentsCreator; |
| 175 friend class TranslationInfoBarTestContentsCreator; | 173 friend class TranslationInfoBarTestContentsCreator; |
| 176 friend class WebDialogGtk; | 174 friend class WebDialogGtk; |
| 177 friend class WebDialogWindowControllerTabContentsCreator; | 175 friend class WebDialogWindowControllerTabContentsCreator; |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 | 407 |
| 410 // The supporting objects need to outlive the WebContents dtor (as they may | 408 // The supporting objects need to outlive the WebContents dtor (as they may |
| 411 // be called upon during its execution). As a result, this must come last | 409 // be called upon during its execution). As a result, this must come last |
| 412 // in the list. | 410 // in the list. |
| 413 scoped_ptr<content::WebContents> web_contents_; | 411 scoped_ptr<content::WebContents> web_contents_; |
| 414 | 412 |
| 415 DISALLOW_COPY_AND_ASSIGN(TabContents); | 413 DISALLOW_COPY_AND_ASSIGN(TabContents); |
| 416 }; | 414 }; |
| 417 | 415 |
| 418 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ | 416 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ |
| OLD | NEW |