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

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

Issue 15499005: Add a new SyncedTabDelegate for Android. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix pre-rendering + revert changes to SessionTabHelper. Created 7 years, 6 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/sessions/session_id.h" 9 #include "chrome/browser/sessions/session_id.h"
10 #include "chrome/browser/sync/glue/synced_tab_delegate.h" 10 #include "chrome/browser/sync/glue/synced_tab_delegate.h"
(...skipping 18 matching lines...) Expand all
29 virtual int GetCurrentEntryIndex() const OVERRIDE; 29 virtual int GetCurrentEntryIndex() const OVERRIDE;
30 virtual int GetEntryCount() const OVERRIDE; 30 virtual int GetEntryCount() const OVERRIDE;
31 virtual int GetPendingEntryIndex() const OVERRIDE; 31 virtual int GetPendingEntryIndex() const OVERRIDE;
32 virtual content::NavigationEntry* GetPendingEntry() const OVERRIDE; 32 virtual content::NavigationEntry* GetPendingEntry() const OVERRIDE;
33 virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE; 33 virtual content::NavigationEntry* GetEntryAtIndex(int i) const OVERRIDE;
34 virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE; 34 virtual content::NavigationEntry* GetActiveEntry() const OVERRIDE;
35 virtual bool ProfileIsManaged() const OVERRIDE; 35 virtual bool ProfileIsManaged() const OVERRIDE;
36 virtual const std::vector<const content::NavigationEntry*>* 36 virtual const std::vector<const content::NavigationEntry*>*
37 GetBlockedNavigations() const OVERRIDE; 37 GetBlockedNavigations() const OVERRIDE;
38 virtual bool IsPinned() const OVERRIDE; 38 virtual bool IsPinned() const OVERRIDE;
39 virtual bool HasWebContents() const OVERRIDE;
39 40
40 private: 41 private:
41 explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents); 42 explicit TabContentsSyncedTabDelegate(content::WebContents* web_contents);
42 friend class content::WebContentsUserData<TabContentsSyncedTabDelegate>; 43 friend class content::WebContentsUserData<TabContentsSyncedTabDelegate>;
43 44
44 content::WebContents* web_contents_; 45 content::WebContents* web_contents_;
45 46
46 DISALLOW_COPY_AND_ASSIGN(TabContentsSyncedTabDelegate); 47 DISALLOW_COPY_AND_ASSIGN(TabContentsSyncedTabDelegate);
47 }; 48 };
48 49
49 #endif // CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_ 50 #endif // CHROME_BROWSER_UI_SYNC_TAB_CONTENTS_SYNCED_TAB_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698