Chromium Code Reviews| Index: chrome/browser/sync/glue/synced_tab_delegate_android.h |
| diff --git a/chrome/browser/sync/glue/synced_tab_delegate_android.h b/chrome/browser/sync/glue/synced_tab_delegate_android.h |
| index c7bd04a4a4d231e2187321297d8ea7e1a956ee9a..8147a04a2bb7492bbd484bd6b136fb473529a4f2 100644 |
| --- a/chrome/browser/sync/glue/synced_tab_delegate_android.h |
| +++ b/chrome/browser/sync/glue/synced_tab_delegate_android.h |
| @@ -6,7 +6,7 @@ |
| #define CHROME_BROWSER_SYNC_GLUE_SYNCED_TAB_DELEGATE_ANDROID_H_ |
| #include "base/compiler_specific.h" |
| -#include "chrome/browser/sync/glue/synced_tab_delegate.h" |
| +#include "components/sync_sessions/synced_tab_delegate.h" |
| #include "content/public/browser/web_contents_user_data.h" |
| namespace content { |
| @@ -26,30 +26,27 @@ class SyncedTabDelegateAndroid : public browser_sync::SyncedTabDelegate { |
| explicit SyncedTabDelegateAndroid(TabAndroid* owning_tab_); |
| ~SyncedTabDelegateAndroid() override; |
| - // Methods from SyncedTabDelegate. |
| + // SyncedTabDelegate: |
| SessionID::id_type GetWindowId() const override; |
|
skym
2015/10/16 16:55:46
While you're in here, should probably #include for
Nicolas Zea
2015/10/20 23:14:41
So, my interpretation of IWYU is that it's not nec
|
| SessionID::id_type GetSessionId() const override; |
| bool IsBeingDestroyed() const override; |
| - Profile* profile() const override; |
| std::string GetExtensionAppId() const override; |
|
skym
2015/10/16 16:55:47
While you're in here, #include <string>. Although,
Nicolas Zea
2015/10/20 23:14:41
Done.
|
| bool IsInitialBlankNavigation() const override; |
| int GetCurrentEntryIndex() const override; |
| int GetEntryCount() const override; |
| - int GetPendingEntryIndex() const override; |
| - content::NavigationEntry* GetPendingEntry() const override; |
| - content::NavigationEntry* GetEntryAtIndex(int i) const override; |
| - content::NavigationEntry* GetActiveEntry() const override; |
| + GURL GetVirtualURLAtIndex(int i) const override; |
|
skym
2015/10/16 16:55:46
Forward declare GURL
Nicolas Zea
2015/10/20 23:14:41
See above
|
| + GURL GetFaviconURLAtIndex(int i) const override; |
| + ui::PageTransition GetTransitionAtIndex(int i) const override; |
|
skym
2015/10/16 16:55:46
#include for ui::PageTransition
Nicolas Zea
2015/10/20 23:14:41
see above
|
| + void GetSerializedNavigationAtIndex( |
| + int i, |
| + sessions::SerializedNavigationEntry* serialized_entry) const override; |
|
skym
2015/10/16 16:55:46
Forward declare SerializedNavigationEntry
Nicolas Zea
2015/10/20 23:14:42
See above.
|
| bool IsPinned() const override; |
| bool HasWebContents() const override; |
| - content::WebContents* GetWebContents() const override; |
| int GetSyncId() const override; |
| void SetSyncId(int sync_id) override; |
| - |
| - // Supervised user related methods. |
| - |
| bool ProfileIsSupervised() const override; |
| - const std::vector<const content::NavigationEntry*>* GetBlockedNavigations() |
| - const override; |
| + const std::vector<const sessions::SerializedNavigationEntry*>* |
| + GetBlockedNavigations() const override; |
|
skym
2015/10/16 16:55:46
Indentation looks odd here, might be the cr tool.
Nicolas Zea
2015/10/20 23:14:41
Yeah, this is git cl format's work.
|
| // Set the web contents for this tab. Also creates |
| // TabContentsSyncedTabDelegate for this tab. |