Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5976)

Unified Diff: chrome/browser/sync/glue/synced_window_delegate_android.h

Issue 2479683006: [Sync] Add support for identifying tabbed activites (Closed)
Patch Set: Self review Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/glue/synced_window_delegate_android.h
diff --git a/chrome/browser/sync/glue/synced_window_delegate_android.h b/chrome/browser/sync/glue/synced_window_delegate_android.h
index 0db172c7b4dd23b0a519f7ef7e63fbb28195d566..0d31d12f2c8e60211027ea3e70be0e2d0050d93b 100644
--- a/chrome/browser/sync/glue/synced_window_delegate_android.h
+++ b/chrome/browser/sync/glue/synced_window_delegate_android.h
@@ -20,7 +20,7 @@ namespace browser_sync {
class SyncedWindowDelegateAndroid : public sync_sessions::SyncedWindowDelegate {
public:
- explicit SyncedWindowDelegateAndroid(TabModel* tab_model);
+ SyncedWindowDelegateAndroid(TabModel* tab_model, bool is_tabbed_activity);
~SyncedWindowDelegateAndroid() override;
// sync_sessions::SyncedWindowDelegate implementation.
@@ -39,6 +39,7 @@ class SyncedWindowDelegateAndroid : public sync_sessions::SyncedWindowDelegate {
private:
TabModel* tab_model_;
+ const bool is_tabbed_activity_ = false;
DISALLOW_COPY_AND_ASSIGN(SyncedWindowDelegateAndroid);
};

Powered by Google App Engine
This is Rietveld 408576698