HomeSort by relevance Sort by last modified time
    Searched full:tabs (Results 51 - 75 of 1626) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/common/extensions/docs/examples/api/cookies/
manifest.json 5 "permissions": [ "cookies", "tabs", "http://*/*", "https://*/*" ],
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
manifest.json 5 "permissions": ["history", "tabs"],
  /external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/
manifest.json 5 "permissions": ["tabs"],
popup.html 27 chrome.tabs.getSelected(null, function(tab) {
31 chrome.tabs.sendRequest(tab.id, {counter: 1}, function handler(response) {
33 chrome.tabs.sendRequest(tab.id, {counter: response.counter}, handler);
47 chrome.tabs.getSelected(null, function(tab) {
51 var port = chrome.tabs.connect(tab.id);
  /external/chromium/chrome/common/extensions/docs/examples/api/notifications/
manifest.json 7 "permissions": ["tabs", "notifications"],
  /external/chromium/chrome/common/extensions/docs/examples/api/processes/process_monitor/
manifest.json 6 "experimental", "tabs"
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/pin/
manifest.json 6 "tabs"
  /external/chromium/chrome/common/extensions/docs/examples/api/windows/merge_windows/
manifest.json 14 "permissions": ["tabs"]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/benchmark/
manifest.json 12 "tabs", "https://*/*", "http://*/*"
  /external/chromium/chrome/common/extensions/docs/examples/extensions/calendar/
manifest.json 9 "tabs", "http://*.google.com/", "https://*.google.com/"
  /external/chromium/chrome/common/extensions/docs/examples/extensions/chrome_search/
manifest.json 6 "permissions": [ "tabs", "http://www.google.com/" ],
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gmail/
manifest.json 14 "tabs", "http://*.google.com/", "https://*.google.com/"
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/
manifest.json 8 "tabs",
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/
manifest.json 13 "tabs",
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_a11y/
manifest.json 12 "tabs",
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news_i18n/
manifest.json 12 "tabs",
  /external/llvm/utils/emacs/
emacs.el 5 ;; Max 80 cols per line, indent by two spaces, no tabs.
6 ;; Apparently, this does not affect tabs in Makefiles.
11 '(indent-tabs-mode nil))
20 (indent-tabs-mode . nil)
  /external/chromium/chrome/browser/ui/views/tabs/
side_tab_strip.h 9 #include "chrome/browser/ui/views/tabs/base_tab_strip.h"
16 // The tabs are inset by this much along all axis.
51 virtual void LayoutDraggedTabsAt(const std::vector<BaseTab*>& tabs,
56 const std::vector<BaseTab*>& tabs,
58 virtual int GetSizeNeededForTabs(const std::vector<BaseTab*>& tabs) OVERRIDE;
70 // Returns the max visible y-coordinate for tabs.
86 // Separator between mini-tabs and the new tab button. The separator is
87 // positioned above the visible area if there are no mini-tabs.
94 // scrolled the tabs this is non-zero.
97 // Height needed to display the tabs, separator and new tab button. Doesn'
    [all...]
  /external/chromium/chrome/browser/sessions/
tab_restore_service.cc 137 // have Tabs with the |id|.
143 std::vector<TabRestoreService::Tab>::iterator j = window->tabs.begin();
144 for ( ; j != window->tabs.end(); ++j) {
145 // If the ID matches one of this window's tabs, remove it from the list.
147 window->tabs.erase(j);
241 // into the vector, which will give all tabs in a window the same ID.
243 window->tabs.push_back(Tab());
247 PopulateTab(&(window->tabs[entry_index]),
251 if (window->tabs[entry_index].navigations.empty()) {
252 window->tabs.erase(window->tabs.begin() + entry_index)
553 std::vector<Tab>& tabs = static_cast<Window*>(*i)->tabs; local
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/
window_applescript_test.mm 64 // Tabs within the window.
65 IN_PROC_BROWSER_TEST_F(WindowAppleScriptTest, Tabs) {
68 NSArray* tabs = [aWindow.get() tabs];
69 EXPECT_EQ(1U, [tabs count]);
70 TabAppleScript* tab1 = [tabs objectAtIndex:0];
89 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:1];
111 TabAppleScript* tab = [[aWindow.get() tabs] objectAtIndex:0];
119 // Inserting and deleting tabs.
131 EXPECT_EQ((int)[[aWindow.get() tabs] count], count)
    [all...]
constants_applescript.mm 11 // Property to access tabs.
12 NSString* const kTabsProperty = @"tabs";
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/inspector/
tabs_api.html 6 tabs = {};
28 tabs = {};
34 for (var j = 0; j < windowList[i].tabs.length; j++) {
35 tabIds[tabIds.length] = windowList[i].tabs[j].id;
36 tabs[windowList[i].tabs[j].id] = windowList[i].tabs[j];
57 chrome.tabs.update(id, updateTabData(id));
71 chrome.tabs.move(id, moveTabData(id));
96 chrome.tabs.create(args)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/applescript/examples/
bookmark_current_tabs.applescript 5 -- This script bookmarks the currently open tabs of a window.
10 repeat with i from 1 to (count tabs)
  /external/chromium/chrome/common/extensions/docs/static/
windows.html 17 you must declare the "tabs" permission
20 the window and tabs modules interact so closely we
28 <b>"permissions": ["tabs"]</b>,
46 creates a few tabs or windows from a single HTML file,
49 <a href="tabs.html#method-getSelected">chrome.tabs.getSelected</a>.
66 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/tabs/inspector/tabs_api.html?content-type=text/plain">tabs_api.html</a> file
68 <a href="http://src.chromium.org/viewvc/chrome/trunk/src/chrome/common/extensions/docs/examples/api/tabs/inspector/">inspector</a>
  /external/chromium/chrome/browser/extensions/
execute_code_in_tab_function.h 15 // Implement API call tabs.executeScript and tabs.insertCSS.
55 DECLARE_EXTENSION_FUNCTION_NAME("tabs.executeScript")
59 DECLARE_EXTENSION_FUNCTION_NAME("tabs.insertCSS")

Completed in 178 milliseconds

1 23 4 5 6 7 8 91011>>