| 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_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "base/macros.h" |
| 9 #include "components/sessions/core/session_id.h" | 10 #include "components/sessions/core/session_id.h" |
| 10 #include "components/sync_sessions/synced_window_delegate.h" | 11 #include "components/sync_sessions/synced_window_delegate.h" |
| 11 | 12 |
| 12 class TabModel; | 13 class TabModel; |
| 13 | 14 |
| 14 namespace browser_sync { | 15 namespace browser_sync { |
| 15 | 16 |
| 16 class SyncedTabDelegate; | 17 class SyncedTabDelegate; |
| 17 | 18 |
| 18 class SyncedWindowDelegateAndroid : public browser_sync::SyncedWindowDelegate { | 19 class SyncedWindowDelegateAndroid : public browser_sync::SyncedWindowDelegate { |
| (...skipping 18 matching lines...) Expand all Loading... |
| 37 | 38 |
| 38 private: | 39 private: |
| 39 TabModel* tab_model_; | 40 TabModel* tab_model_; |
| 40 | 41 |
| 41 DISALLOW_COPY_AND_ASSIGN(SyncedWindowDelegateAndroid); | 42 DISALLOW_COPY_AND_ASSIGN(SyncedWindowDelegateAndroid); |
| 42 }; | 43 }; |
| 43 | 44 |
| 44 } // namespace browser_sync | 45 } // namespace browser_sync |
| 45 | 46 |
| 46 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ | 47 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_WINDOW_DELEGATE_ANDROID_H_ |
| OLD | NEW |