HomeSort by relevance Sort by last modified time
    Searched refs:pinned (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium/chrome/browser/sessions/
tab_restore_service_browsertest.cc 83 // If |pinned| is true, the tab is marked as pinned in the session service.
84 void AddWindowWithOneTabToSessionService(bool pinned) {
92 if (pinned)
101 // way of AddWindowWithOneTabToSessionService. If |pinned| is true, the
102 // tab is marked as pinned in the session service.
103 void CreateSessionServiceWithOneWindow(bool pinned) {
108 AddWindowWithOneTabToSessionService(pinned);
135 EXPECT_FALSE(tab->pinned);
157 EXPECT_FALSE(tab->pinned);
    [all...]
session_types.cc 92 pinned(false) {
session_types.h 131 // True if the tab is pinned.
132 bool pinned; member in struct:SessionTab
tab_restore_service.cc 63 // pinned and kCommandSetExtensionAppID if the tab has an app id. This is
115 // Only written if the tab is pinned.
173 pinned(false) {
358 tab.pinned, tab.from_last_session,
513 tab->pinned = delegate->IsTabPinned(tab->tabstrip_index);
615 if (tab.pinned) {
855 // tab is pinned.
856 current_tab->pinned = true;
    [all...]
tab_restore_service.h 93 // True if the tab was pinned.
94 bool pinned; member in struct:TabRestoreService::Tab
197 // browser_id and pinned state from the browser.
session_service.h 89 // Sets the pinned state of the tab.
135 bool pinned);
session_service.cc 369 bool pinned) {
374 pinned, &pending_commands(), NULL);
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tabs/
tab_controller.h 68 @property(assign, nonatomic) BOOL pinned; variable
tab_strip_controller.h 188 // location when the tab is added to the model. If the tab was pinned in its
189 // previous window, setting |pinned| to YES will propagate that state to the
190 // new window. Mini-tabs are either app or pinned tabs; the app state is stored
191 // by the |contents|, but the |pinned| state is the caller's responsibility.
194 asPinnedTab:(BOOL)pinned;
  /external/chromium/chrome/browser/tabs/
tab_strip_model.cc 120 // Force app tabs to be pinned.
136 data->pinned = pin;
307 // Then move the non-pinned tabs.
498 void TabStripModel::SetTabPinned(int index, bool pinned) {
500 if (contents_data_[index]->pinned == pinned)
504 if (!pinned) {
505 // App tabs should always be pinned.
509 // Changing the pinned state of an app tab doesn't effect it's mini-tab
511 contents_data_[index]->pinned = pinned
    [all...]
tab_strip_model.h 46 // . Pinned. Any tab can be pinned. Non-app tabs whose pinned state is changed
94 // The tab should be pinned.
337 // Changes the pinned state of the tab at |index|. See description above
339 void SetTabPinned(int index, bool pinned);
341 // Returns true if the tab at |index| is pinned.
342 // See description above class for details on pinned tabs.
363 // mini (pinned or app). If |mini_tab| is true, the returned index is between
561 pinned(false)
605 bool pinned; member in struct:TabStripModel::TabContentsData
    [all...]