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_ANDROID_TAB_MODEL_TAB_MODEL_H_ | 5 #ifndef CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ |
6 #define CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ | 6 #define CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ |
7 | 7 |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "chrome/browser/ui/toolbar/toolbar_model_delegate.h" | 9 #include "chrome/browser/ui/toolbar/toolbar_model_delegate.h" |
10 #include "components/sessions/session_id.h" | 10 #include "components/sessions/core/session_id.h" |
11 #include "components/sync_driver/glue/synced_window_delegate.h" | 11 #include "components/sync_driver/glue/synced_window_delegate.h" |
12 #include "components/toolbar/toolbar_model.h" | 12 #include "components/toolbar/toolbar_model.h" |
13 #include "content/public/browser/notification_observer.h" | 13 #include "content/public/browser/notification_observer.h" |
14 #include "content/public/browser/notification_registrar.h" | 14 #include "content/public/browser/notification_registrar.h" |
15 | 15 |
16 namespace browser_sync { | 16 namespace browser_sync { |
17 class SyncedWindowDelegate; | 17 class SyncedWindowDelegate; |
18 class SyncedWindowDelegateAndroid; | 18 class SyncedWindowDelegateAndroid; |
19 } | 19 } |
20 | 20 |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 // across sessions. | 86 // across sessions. |
87 SessionID session_id_; | 87 SessionID session_id_; |
88 | 88 |
89 // The Registrar used to register TabModel for notifications. | 89 // The Registrar used to register TabModel for notifications. |
90 content::NotificationRegistrar registrar_; | 90 content::NotificationRegistrar registrar_; |
91 | 91 |
92 DISALLOW_COPY_AND_ASSIGN(TabModel); | 92 DISALLOW_COPY_AND_ASSIGN(TabModel); |
93 }; | 93 }; |
94 | 94 |
95 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ | 95 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ |
OLD | NEW |