| 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/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
| 10 #include "chrome/browser/ui/toolbar/toolbar_model_delegate.h" | |
| 11 #include "components/sessions/core/session_id.h" | 10 #include "components/sessions/core/session_id.h" |
| 12 #include "components/sync_sessions/synced_window_delegate.h" | 11 #include "components/sync_sessions/synced_window_delegate.h" |
| 13 #include "components/toolbar/toolbar_model.h" | 12 #include "components/toolbar/toolbar_model.h" |
| 13 #include "components/toolbar/toolbar_model_delegate.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 | 16 |
| 17 namespace browser_sync { | 17 namespace browser_sync { |
| 18 class SyncedWindowDelegate; | 18 class SyncedWindowDelegate; |
| 19 class SyncedWindowDelegateAndroid; | 19 class SyncedWindowDelegateAndroid; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace content { | 22 namespace content { |
| 23 class WebContents; | 23 class WebContents; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 // across sessions. | 88 // across sessions. |
| 89 SessionID session_id_; | 89 SessionID session_id_; |
| 90 | 90 |
| 91 // The Registrar used to register TabModel for notifications. | 91 // The Registrar used to register TabModel for notifications. |
| 92 content::NotificationRegistrar registrar_; | 92 content::NotificationRegistrar registrar_; |
| 93 | 93 |
| 94 DISALLOW_COPY_AND_ASSIGN(TabModel); | 94 DISALLOW_COPY_AND_ASSIGN(TabModel); |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ | 97 #endif // CHROME_BROWSER_UI_ANDROID_TAB_MODEL_TAB_MODEL_H_ |
| OLD | NEW |