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...]
  /bionic/libc/kernel/common/linux/
perf_event.h 131 pinned : 1, member in struct:perf_event_attr
  /external/chromium/chrome/browser/resources/ntp4/
most_visited_page.css 113 .pinned .edit-bar > .pin {
117 .pinned .edit-bar > .pin:hover {
121 .pinned .edit-bar > .pin:active {
  /external/linux-tools-perf/util/include/linux/added/
hw_breakpoint.h 45 * As it's for in-kernel or ptrace use, we want it to be pinned
48 attr->pinned = 1;
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 131 .pinned .edit-bar > .pin {
135 .pinned .edit-bar > .pin:hover {
139 .pinned .edit-bar > .pin:active {
apps.js 264 var launchTypeIds = ['apps-launch-type-pinned',
298 case 'apps-launch-type-pinned':
  /external/chromium/chrome/browser/ui/views/tabs/
dragged_tab_controller.h 120 // Is the tab pinned?
121 bool pinned; member in struct:DraggedTabController::TabDragData
dragged_tab_controller.cc 312 pinned(false) {
410 drag_data->pinned = source_tabstrip_->IsTabPinned(tab);
747 // Move may do nothing in certain situations (such as when dragging pinned
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_tabs_module.cc 713 // Default to not pinning the tab. Setting the 'pinned' property to true
715 bool pinned = false; local
717 EXTENSION_FUNCTION_VALIDATE(args->GetBoolean(keys::kPinnedKey, &pinned));
746 if (pinned)
891 bool pinned = false; local
894 &pinned));
895 tab_strip->SetTabPinned(tab_index, pinned);
897 // Update the tab index because it may move when being pinned.
    [all...]
  /external/chromium/chrome/browser/sync/glue/
session_model_associator_unittest.cc 98 ASSERT_TRUE(tab.pinned);
session_model_associator.cc 613 tab->pinned = specifics.pinned();
    [all...]
  /external/chromium/chrome/browser/ui/gtk/tabs/
tab_renderer_gtk.h 116 void SetBlocked(bool pinned);
  /external/linux-tools-perf/util/
python.c 402 "pinned",
425 pinned = 0, local
448 &pinned, &exclusive, &exclude_user,
467 attr.pinned = pinned;
  /external/chromium/chrome/browser/sync/protocol/
proto_value_conversions.cc 116 SET_BOOL(pinned);
  /external/chromium/chrome/browser/sync/
profile_sync_service_session_unittest.cc 304 ASSERT_TRUE(foreign_sessions[0]->windows[0]->tabs[0]->pinned);

Completed in 336 milliseconds

1 2