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

Side by Side Diff: chrome/browser/ui/sync/tab_contents_synced_tab_delegate.h

Issue 11030004: Switch TabContentsSyncedTabDelegate to use WebContentsUserData. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, added TODO Created 8 years, 2 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_ 5 #ifndef CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
6 #define CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_ 6 #define CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "chrome/browser/common/web_contents_user_data.h"
9 #include "chrome/browser/sessions/session_id.h" 10 #include "chrome/browser/sessions/session_id.h"
10 #include "chrome/browser/sync/glue/synced_tab_delegate.h" 11 #include "chrome/browser/sync/glue/synced_tab_delegate.h"
11 12
12 class TabContents; 13 namespace content {
14 class WebContents;
15 }
13 16
14 class TabContentsSyncedTabDelegate 17 class TabContentsSyncedTabDelegate
15 : public browser_sync::SyncedTabDelegate { 18 : public browser_sync::SyncedTabDelegate,
19 public WebContentsUserData<TabContentsSyncedTabDelegate> {
16 public: 20 public:
17 explicit TabContentsSyncedTabDelegate(TabContents* tab_contents);
18 virtual ~TabContentsSyncedTabDelegate(); 21 virtual ~TabContentsSyncedTabDelegate();
19 22
20 // Methods from SyncedTabDelegate. 23 // Methods from SyncedTabDelegate.
21 virtual SessionID::id_type GetWindowId() const OVERRIDE; 24 virtual SessionID::id_type GetWindowId() const OVERRIDE;
22 virtual SessionID::id_type GetSessionId() const OVERRIDE; 25 virtual SessionID::id_type GetSessionId() const OVERRIDE;
23 virtual bool IsBeingDestroyed() const OVERRIDE; 26 virtual bool IsBeingDestroyed() const OVERRIDE;
24 virtual Profile* profile() const OVERRIDE; 27 virtual Profile* profile() const OVERRIDE;
25 virtual std::string GetExtensionAppId() const OVERRIDE; 28 virtual std::string GetExtensionAppId() const OVERRIDE;
26 virtual int GetCurrentEntryIndex() const OVERRIDE; 29 virtual int GetCurrentEntryIndex() const OVERRIDE;
27 virtual int GetEntryCount() const OVERRIDE; 30 virtual int GetEntryCount() const OVERRIDE;
28 virtual int GetPendingEntryIndex() const OVERRIDE; 31 virtual int GetPendingEntryIndex() const OVERRIDE;
29 virtual content::NavigationEntry* GetPendingEntry() const OVERRIDE; 32 virtual content::NavigationEntry* GetPendingEntry() const OVERRIDE;
30 virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE; 33 virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE;
31 virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE; 34 virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE;
32 virtual bool IsPinned() const OVERRIDE; 35 virtual bool IsPinned() const OVERRIDE;
33 36
34 private: 37 private:
35 TabContents* tab_contents_; 38 explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents);
39 friend class WebContentsUserData<TabContentsSyncedTabDelegate>;
40
41 content::WebContents* web_contents_;
36 42
37 DISALLOW_COPY_AND_ASSIGN(TabContentsSyncedTabDelegate); 43 DISALLOW_COPY_AND_ASSIGN(TabContentsSyncedTabDelegate);
38 }; 44 };
39 45
40 #endif // CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_ 46 #endif // CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/sync/browser_synced_window_delegate.cc ('k') | chrome/browser/ui/sync/tab_contents_synced_tab_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698