| 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 COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ | 5 #ifndef COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ |
| 6 #define COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ | 6 #define COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ |
| 7 | 7 |
| 8 #include <memory> |
| 8 #include <string> | 9 #include <string> |
| 9 #include <vector> | 10 #include <vector> |
| 10 | 11 |
| 11 #include "components/sessions/core/serialized_navigation_entry.h" | 12 #include "components/sessions/core/serialized_navigation_entry.h" |
| 12 #include "components/sessions/core/session_id.h" | 13 #include "components/sessions/core/session_id.h" |
| 13 #include "ui/base/page_transition_types.h" | 14 #include "ui/base/page_transition_types.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 | 16 |
| 16 namespace sync_sessions { | 17 namespace sync_sessions { |
| 17 class SyncSessionsClient; | 18 class SyncSessionsClient; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 61 // tab should be preserved. | 62 // tab should be preserved. |
| 62 virtual bool IsPlaceholderTab() const = 0; | 63 virtual bool IsPlaceholderTab() const = 0; |
| 63 | 64 |
| 64 protected: | 65 protected: |
| 65 SyncedTabDelegate(); | 66 SyncedTabDelegate(); |
| 66 }; | 67 }; |
| 67 | 68 |
| 68 } // namespace sync_sessions | 69 } // namespace sync_sessions |
| 69 | 70 |
| 70 #endif // COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ | 71 #endif // COMPONENTS_SYNC_SESSIONS_SYNCED_TAB_DELEGATE_H__ |
| OLD | NEW |