Searched refs:pinned (Results 1 - 25 of 50) sorted by relevance

12

/external/chromium_org/chrome/common/extensions/docs/examples/howto/tab_shortcuts/
H A Dtab_shortcuts.js14 chrome.tabs.update({pinned: !tab.pinned});
/external/chromium_org/chrome/common/extensions/docs/examples/api/tabs/pin/
H A Dbackground.js9 // Toggle the pinned status
11 chrome.tabs.update(current.id, {'pinned': !current.pinned});
/external/chromium_org/chrome/browser/sessions/
H A Dsession_types.cc19 pinned(false) {
31 pinned = sync_data.pinned();
49 sync_data.set_pinned(pinned);
H A Dtab_restore_service.cc37 pinned(false) {
H A Dsession_types_unittest.cc48 tab.pinned = false;
60 EXPECT_TRUE(tab.pinned);
83 tab.pinned = true;
99 EXPECT_TRUE(sync_data.pinned());
H A Dsession_types.h83 // True if the tab is pinned.
84 bool pinned; member in struct:SessionTab
H A Dpersistent_tab_restore_service_unittest.cc126 // If |pinned| is true, the tab is marked as pinned in the session service.
127 void AddWindowWithOneTabToSessionService(bool pinned) { argument
137 if (pinned)
147 // way of AddWindowWithOneTabToSessionService. If |pinned| is true, the
148 // tab is marked as pinned in the session service.
149 void CreateSessionServiceWithOneWindow(bool pinned) { argument
154 AddWindowWithOneTabToSessionService(pinned);
214 EXPECT_FALSE(tab->pinned);
238 EXPECT_FALSE(tab->pinned);
[all...]
H A Dtab_restore_service.h97 // True if the tab was pinned.
98 bool pinned; member in struct:TabRestoreService::Tab
H A Dtab_restore_service_helper.cc253 tab.pinned,
446 tab->pinned = delegate->IsTabPinned(tab->tabstrip_index);
498 tab.pinned,
556 return tab->pinned ||
H A Dpersistent_tab_restore_service.cc30 // Only written if the tab is pinned.
87 // pinned and kCommandSetExtensionAppID if the tab has an app id and
444 if (tab.pinned) {
693 // tab is pinned.
694 current_tab->pinned = true;
796 tab.pinned = session_window->tabs[i]->pinned;
/external/chromium_org/android_webview/buildbot/
H A Dgenerate_local_manifest.py47 for pinned in pinned_projects:
48 if pinned['path'] == project_path and pinned['name'] == project_name:
50 pin_project(project, pinned['revision'])
/external/chromium_org/chrome/browser/ui/cocoa/tabs/
H A Dtab_controller.h71 @property(assign, nonatomic) BOOL pinned; variable
H A Dtab_strip_controller.h188 // correct location when the tab is added to the model. If the tab was pinned in
189 // its 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.
196 asPinnedTab:(BOOL)pinned
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Dhw_breakpoint.h18 * As it's for in-kernel or ptrace use, we want it to be pinned
21 attr->pinned = 1;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events.c696 int pinned; member in struct:event_modifier
709 int pinned = evsel ? evsel->attr.pinned : 0; local
745 pinned = 1;
773 mod->pinned = pinned;
828 evsel->attr.pinned = mod.pinned;
/external/chromium_org/chrome/browser/extensions/
H A Dextension_tab_util.cc198 // Default to not pinning the tab. Setting the 'pinned' property to true
200 bool pinned = false; local
201 if (params.pinned.get())
202 pinned = *params.pinned;
232 if (pinned)
H A Dextension_tab_util.h58 scoped_ptr<bool> pinned; member in struct:extensions::ExtensionTabUtil::OpenTabParams
/external/chromium_org/chrome/browser/ui/tabs/
H A Dtab_strip_model.cc152 bool pinned() const { return pinned_; } function in class:TabStripModel::WebContentsData
195 // Is the tab pinned?
280 // Force app tabs to be pinned.
506 // Then move the non-pinned tabs.
662 void TabStripModel::SetTabPinned(int index, bool pinned) { argument
664 if (contents_data_[index]->pinned() == pinned)
668 if (!pinned) {
669 // App tabs should always be pinned.
673 // Changing the pinned stat
[all...]
H A Dtab_strip_model.h44 // App tabs are always pinned (you can't unpin them).
45 // . Pinned. Any tab can be pinned. Non-app tabs whose pinned state is changed
84 // The tab should be pinned.
320 // Changes the pinned state of the tab at |index|. See description above
322 void SetTabPinned(int index, bool pinned);
324 // Returns true if the tab at |index| is pinned.
325 // See description above class for details on pinned tabs.
350 // mini (pinned or app). If |mini_tab| is true, the returned index is between
/external/chromium_org/chrome/browser/sync/glue/
H A Dsession_sync_test_helper.cc81 ASSERT_TRUE(tab->pinned);
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dattr.c105 WRITE_ASS(pinned, "d");
/external/chromium_org/chrome/browser/extensions/api/sessions/
H A Dsessions_api.cc78 bool pinned,
97 tab_struct->pinned = pinned;
151 tab.pinned,
248 tab.pinned,
73 CreateTabModelHelper( Profile* profile, const sessions::SerializedNavigationEntry& current_navigation, const std::string& session_id, int index, bool pinned, int selected_index, const Extension* extension) argument
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_manager_commands.js130 * Obtains target entries that can be pinned from the selection.
146 entry.pinned = metadata.pinned;
690 CommandHandler.COMMANDS_['toggle-pinned'] = {
700 // Check if all the entries are pinned or not.
745 checked = checked && entries[i].pinned;
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Dtab_drag_controller.h200 // Is the tab pinned?
201 bool pinned; member in struct:TabDragController::TabDragData
/external/kernel-headers/original/uapi/linux/
H A Dperf_event.h271 pinned : 1, /* must always be on PMU */ member in struct:perf_event_attr

Completed in 909 milliseconds

12