OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsTabPinned
(Results
1 - 25
of
69
) sorted by null
1
2
3
/external/chromium_org/chrome/browser/sync/glue/
synced_window_delegate.h
57
virtual bool
IsTabPinned
(const SyncedTabDelegate* tab) const = 0;
synced_window_delegate_android.h
32
virtual bool
IsTabPinned
(const SyncedTabDelegate* tab) const OVERRIDE;
synced_window_delegate_android.cc
74
bool SyncedWindowDelegateAndroid::
IsTabPinned
(
/external/chromium/chrome/browser/ui/views/tabs/
tab_strip_controller.h
37
virtual bool
IsTabPinned
(int index) const = 0;
tab_controller.h
47
virtual bool
IsTabPinned
(const BaseTab* tab) const = 0;
browser_tab_strip_controller.h
40
bool
IsTabPinned
(BaseTab* tab) const;
47
virtual bool
IsTabPinned
(int model_index) const OVERRIDE;
browser_tab_strip_controller.cc
182
bool BrowserTabStripController::
IsTabPinned
(BaseTab* tab) const {
183
return
IsTabPinned
(tabstrip_->GetModelIndexOfBaseTab(tab));
202
bool BrowserTabStripController::
IsTabPinned
(int model_index) const {
203
return model_->ContainsIndex(model_index) && model_->
IsTabPinned
(model_index);
/external/chromium_org/chrome/browser/ui/sync/
browser_synced_window_delegate.h
33
virtual bool
IsTabPinned
(
browser_synced_window_delegate.cc
43
bool BrowserSyncedWindowDelegate::
IsTabPinned
(
48
return browser_->tab_strip_model()->
IsTabPinned
(i);
tab_contents_synced_tab_delegate.cc
99
return window ? window->
IsTabPinned
(this) : false;
/external/chromium/chrome/browser/sessions/
tab_restore_service_delegate.h
38
virtual bool
IsTabPinned
(int index) const = 0;
/external/chromium/chrome/browser/ui/
browser_tab_restore_service_delegate.h
35
virtual bool
IsTabPinned
(int index) const OVERRIDE;
browser_tab_restore_service_delegate.cc
36
bool BrowserTabRestoreServiceDelegate::
IsTabPinned
(int index) const {
37
return browser_->
IsTabPinned
(index);
/external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip_controller.h
50
virtual bool
IsTabPinned
(int index) const = 0;
fake_base_tab_strip_controller.h
31
virtual bool
IsTabPinned
(int index) const OVERRIDE;
tab_controller.h
60
virtual bool
IsTabPinned
(const Tab* tab) const = 0;
browser_tab_strip_controller.h
45
bool
IsTabPinned
(Tab* tab) const;
54
virtual bool
IsTabPinned
(int model_index) const OVERRIDE;
fake_base_tab_strip_controller.cc
59
bool FakeBaseTabStripController::
IsTabPinned
(int index) const {
/external/chromium_org/chrome/browser/ui/
browser_tab_restore_service_delegate.cc
48
bool BrowserTabRestoreServiceDelegate::
IsTabPinned
(int index) const {
49
return browser_->tab_strip_model()->
IsTabPinned
(index);
browser_tab_restore_service_delegate.h
32
virtual bool
IsTabPinned
(int index) const OVERRIDE;
/external/chromium_org/chrome/browser/sessions/
tab_restore_service_delegate.h
50
virtual bool
IsTabPinned
(int index) const = 0;
/external/chromium/chrome/browser/tabs/
pinned_tab_codec.cc
32
if (tab_model->
IsTabPinned
(i))
70
for (int i = 0; i < tab_model->count() && tab_model->
IsTabPinned
(i); ++i)
/external/chromium_org/chrome/browser/ui/tabs/
pinned_tab_codec.cc
35
if (tab_model->
IsTabPinned
(i))
83
for (int i = 0; i < tab_model->count() && tab_model->
IsTabPinned
(i); ++i)
/external/chromium/chrome/browser/
oom_priority_manager.cc
111
stats.is_pinned = model->
IsTabPinned
(i);
/external/chromium/chrome/browser/ui/gtk/tabs/
tab_gtk.h
35
virtual bool
IsTabPinned
(const TabGtk* tab) const = 0;
Completed in 174 milliseconds
1
2
3