Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: chrome/browser/ui/tab_contents/tab_contents.h

Issue 10908153: [Panel refactor] Deprecate old panels. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix views compile, no need to delete extra mac menu items cuz not using browser command updater any… Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 friend class chromeos::WebUILoginView; 157 friend class chromeos::WebUILoginView;
159 friend class ChromeWebContentsHandler; 158 friend class ChromeWebContentsHandler;
160 friend class ConstrainedWebDialogDelegateBase; 159 friend class ConstrainedWebDialogDelegateBase;
161 friend class extensions::WebAuthFlow; 160 friend class extensions::WebAuthFlow;
162 friend class ExtensionTabUtil; 161 friend class ExtensionTabUtil;
163 friend class ExternalTabContainerWin; 162 friend class ExternalTabContainerWin;
164 friend class FindBackendTestContentsCreator; 163 friend class FindBackendTestContentsCreator;
165 friend class GeolocationPermissionContextTests; 164 friend class GeolocationPermissionContextTests;
166 friend class InfoBarControllerContentsCreator; 165 friend class InfoBarControllerContentsCreator;
167 friend class InstantLoader; 166 friend class InstantLoader;
168 friend class OldBasePanelBrowserTest;
169 friend class OffscreenTabContentsCreator; 167 friend class OffscreenTabContentsCreator;
170 friend class PanelHost; 168 friend class PanelHost;
171 friend class prerender::PrerenderContents; 169 friend class prerender::PrerenderContents;
172 friend class ShellWindow; 170 friend class ShellWindow;
173 friend class TabContentsTestHarness; 171 friend class TabContentsTestHarness;
174 friend class TabStripModel; 172 friend class TabStripModel;
175 friend class TabStripModelContentsCreator; 173 friend class TabStripModelContentsCreator;
176 friend class TranslationInfoBarTestContentsCreator; 174 friend class TranslationInfoBarTestContentsCreator;
177 friend class WebDialogGtk; 175 friend class WebDialogGtk;
178 friend class WebDialogWindowControllerTabContentsCreator; 176 friend class WebDialogWindowControllerTabContentsCreator;
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after
419 417
420 // The supporting objects need to outlive the WebContents dtor (as they may 418 // The supporting objects need to outlive the WebContents dtor (as they may
421 // be called upon during its execution). As a result, this must come last 419 // be called upon during its execution). As a result, this must come last
422 // in the list. 420 // in the list.
423 scoped_ptr<content::WebContents> web_contents_; 421 scoped_ptr<content::WebContents> web_contents_;
424 422
425 DISALLOW_COPY_AND_ASSIGN(TabContents); 423 DISALLOW_COPY_AND_ASSIGN(TabContents);
426 }; 424 };
427 425
428 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_ 426 #endif // CHROME_BROWSER_UI_TAB_CONTENTS_TAB_CONTENTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698