| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_TAB_DELEGATE_ANDROID_H_ | 5 #ifndef CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ |
| 6 #define CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ | 6 #define CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "base/compiler_specific.h" | 12 #include "base/compiler_specific.h" |
| 12 #include "base/macros.h" | 13 #include "base/macros.h" |
| 13 #include "components/sync_sessions/synced_tab_delegate.h" | 14 #include "components/sync_sessions/synced_tab_delegate.h" |
| 14 #include "content/public/browser/web_contents_user_data.h" | 15 #include "content/public/browser/web_contents_user_data.h" |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 class WebContents; | 18 class WebContents; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 private: | 62 private: |
| 62 content::WebContents* web_contents_; | 63 content::WebContents* web_contents_; |
| 63 TabAndroid* tab_android_; | 64 TabAndroid* tab_android_; |
| 64 TabContentsSyncedTabDelegate* tab_contents_delegate_; | 65 TabContentsSyncedTabDelegate* tab_contents_delegate_; |
| 65 | 66 |
| 66 DISALLOW_COPY_AND_ASSIGN(SyncedTabDelegateAndroid); | 67 DISALLOW_COPY_AND_ASSIGN(SyncedTabDelegateAndroid); |
| 67 }; | 68 }; |
| 68 } // namespace browser_sync | 69 } // namespace browser_sync |
| 69 | 70 |
| 70 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ | 71 #endif // CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ |
| OLD | NEW |