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

Side by Side Diff: chrome/browser/tabs/tab_strip_model.h

Issue 9706012: Add abstractions that let embedders drive tests of WebContents. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove CONTENT_EXPORT on statically linked functions. Merge to head for commit. Created 8 years, 9 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_TABS_TAB_STRIP_MODEL_H_ 5 #ifndef CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_
6 #define CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ 6 #define CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_
7 #pragma once 7 #pragma once
8 8
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/observer_list.h" 11 #include "base/observer_list.h"
12 #include "chrome/browser/tabs/tab_strip_model_observer.h" 12 #include "chrome/browser/tabs/tab_strip_model_observer.h"
13 #include "chrome/browser/tabs/tab_strip_selection_model.h" 13 #include "chrome/browser/tabs/tab_strip_selection_model.h"
14 #include "content/public/browser/notification_observer.h" 14 #include "content/public/browser/notification_observer.h"
15 #include "content/public/browser/notification_registrar.h" 15 #include "content/public/browser/notification_registrar.h"
16 #include "content/public/common/page_transition_types.h" 16 #include "content/public/common/page_transition_types.h"
17 17
18 class Profile; 18 class Profile;
19 class TabContents;
20 class TabContentsWrapper; 19 class TabContentsWrapper;
21 class TabStripModelDelegate; 20 class TabStripModelDelegate;
22 class TabStripModelOrderController; 21 class TabStripModelOrderController;
23 22
24 namespace content { 23 namespace content {
25 class NavigationController; 24 class NavigationController;
26 class WebContents; 25 class WebContents;
27 } 26 }
28 27
29 //////////////////////////////////////////////////////////////////////////////// 28 ////////////////////////////////////////////////////////////////////////////////
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after
668 667
669 // A scoped container for notification registries. 668 // A scoped container for notification registries.
670 content::NotificationRegistrar registrar_; 669 content::NotificationRegistrar registrar_;
671 670
672 TabStripSelectionModel selection_model_; 671 TabStripSelectionModel selection_model_;
673 672
674 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel); 673 DISALLOW_IMPLICIT_CONSTRUCTORS(TabStripModel);
675 }; 674 };
676 675
677 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_ 676 #endif // CHROME_BROWSER_TABS_TAB_STRIP_MODEL_H_
OLDNEW
« no previous file with comments | « chrome/browser/sessions/tab_restore_service_browsertest.cc ('k') | chrome/browser/tabs/tab_strip_model_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698