HomeSort by relevance Sort by last modified time
    Searched full:automation (Results 1 - 25 of 158) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/
automation.html 1 {{+partials.standard_extensions_api api:apis.extensions.automation intro:intros.automation/}}
  /external/chromium_org/tools/telemetry/
README 1 telemetry provides automation of chrome instances on top of the
  /external/chromium_org/chrome/browser/extensions/api/automation_internal/
automation_util.h 23 // Shared utility functions for the Automation API.
26 // Dispatch events through the Automation API making any necessary conversions
27 // from accessibility to Automation types.
automation_action_adapter.h 10 // Adapts an object to receive actions from the Automation extension API.
  /external/chromium_org/chrome/common/extensions/manifest_handlers/
automation.cc 5 #include "chrome/common/extensions/manifest_handlers/automation.h"
30 "Cannot specify matches for Automation if desktop=true is specified; "
38 using api::manifest_types::Automation;
174 const base::Value* automation = NULL; local
175 CHECK(extension->manifest()->Get(keys::kAutomation, &automation));
178 AutomationInfo::FromValue(*automation, &install_warnings, error);
222 scoped_ptr<Automation> automation = Automation::FromValue(value, error); local
223 if (!automation)
    [all...]
automation.h 20 struct Automation;
36 // The parsed form of the automation manifest entry.
51 // Returns the list of hosts that this extension can request an automation
56 // access (false) to the automation tree.
63 static scoped_ptr<api::manifest_types::Automation> AsManifestType(
71 // Parses the automation manifest entry.
  /external/chromium_org/chrome/common/extensions/api/
automation.idl 5 // The <code>chrome.automation</code> API allows developers to access the
6 // automation (accessibility) tree for the browser. The tree resembles the DOM
10 [nocompile] namespace automation {
14 // Possible events fired on an $(ref:automation.AutomationNode).
55 // Describes the purpose of an $(ref:automation.AutomationNode).
178 // Describes characteristics of an $(ref:automation.AutomationNode).
214 // An event in the Automation tree.
216 // The $(ref:automation.AutomationNode) to which the event was targeted.
230 // A single node in an Automation tree.
242 automation.RoleType role
    [all...]
automation_internal.idl 5 // This is the implementation layer of the chrome.automation API, and is
66 // All possible actions that can be performed on automation nodes.
96 // Enable automation of the tab with the given id, or the active tab if no
101 // Enables desktop automation.
104 // Performs an action on an automation node.
manifest_types.json 145 "id": "automation",
149 "description": "If true, enables non-interactive access to the automation tree only for the sites for which the extension has a <a href='https://developer.chrome.com/extensions/declare_permissions#host-permissions'>host permission</a> or <a href='https://developer.chrome.com/extensions/declare_permissions#activeTab'>activeTab permission</a>)." },
158 "description": "A list of URL patterns for which this extension may request an automation tree. If not specified, automation permission will be granted for the sites for which the extension has a <a href='https://developer.chrome.com/extensions/declare_permissions#host-permissions'>host permission</a> or <a href='https://developer.chrome.com/extensions/declare_permissions#activeTab'>activeTab permission</a>).",
164 "description": "Whether the extension is allowed interactive access (true) or read-only access (false; default) to the automation tree.",
  /external/chromium_org/chrome/test/chromedriver/extension/
manifest.json 3 "name": "Chrome Automation Extension",
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
manifest.json 3 "name": "Test Automation Provider Extension",
6 "description": "Test Automation Provider Extension",
  /external/chromium_org/chrome/browser/ui/ash/accessibility/
automation_manager_ash.h 26 // Manages a tree of automation nodes.
32 // Enable automation support for views.
35 // Disable automation support for views.
64 // Whether automation support for views is enabled.
  /external/chromium_org/content/public/common/
page_type.h 11 // automation layer to detect the state of a WebContents.
bindings_policy.h 16 // DOM automation bindings that allows the JS content to send JSON-encoded
17 // data back to automation in the parent process. (By default this isn't
18 // allowed unless the app has been started up with the --dom-automation
  /external/chromium_org/win8/test/
ui_automation_client.h 8 // This file contains UI automation implementation details for the
24 // An asynchronous UI automation client that waits for the appearance of a
30 // If the HRESULT argument indicates success, the automation client has been
59 // A thread in the COM MTA in which automation calls are made.
62 // A pointer to the context object that lives on the automation thread.
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/cvox2/background/
background.js 46 chrome.automation.getDesktop(this.onGotTree);
75 chrome.automation.getTree(this.onGotTree.bind(this));
80 * Handles all setup once a new automation tree appears.
81 * @param {AutomationTree} tree The new automation tree.
84 // Register all automation event listeners.
85 root.addEventListener(chrome.automation.EventType.focus,
91 * A generic handler for all desktop automation events.
background.extjs 88 if (root.role == chrome.automation.RoleType.button &&
101 chrome.automation.getDesktop(function(root) {
103 testButton.addEventListener(chrome.automation.EventType.focus,
  /external/chromium_org/chrome/renderer/resources/extensions/
automation_custom_bindings.js 5 // Custom bindings for the automation API.
8 var automation = require('binding').Binding.create('automation'); variable
21 // TODO(dtseng): Move out to automation/automation_util.js or as a static member
33 automation.registerCustomHook(function(bindingsAPI) {
143 exports.binding = automation.generate();
145 // Add additional accessibility bindings not specified in the automation IDL.
146 // Accessibility and automation share some APIs (see
  /external/chromium_org/chrome/browser/extensions/api/automation/
automation_apitest.cc 34 static const char kSitesDir[] = "automation/sites";
82 test_data_dir_.AppendASCII("automation/tests/basic");
93 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "sanity_check.html"))
98 ASSERT_TRUE(RunExtensionSubtest("automation/tests/unit", "unit.html"))
104 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "tab_id.html"))
110 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "events.html"))
116 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "actions.html"))
122 ASSERT_TRUE(RunExtensionSubtest("automation/tests/tabs", "location.html"))
129 "automation/tests/tabs_automation_boolean", "permissions.html"))
136 "automation/tests/tabs_automation_boolean", "actions.html")
    [all...]
  /external/chromium_org/content/public/test/
javascript_test_observer.h 21 // Base class for handling a stream of automation messages produced by a
35 // Called when a message is received from the DOM automation controller.
56 // This class captures a stream of automation messages coming from a Javascript
  /external/chromium_org/chrome/browser/extensions/
OWNERS 4 # c/b/e/api/automation/OWNERS. Use those reviewers where possible.
  /external/chromium_org/chrome/browser/ui/
browser_window_testing_views.h 17 // UI used only by UI test automation.
  /external/chromium_org/chrome/renderer/extensions/
automation_internal_custom_bindings.h 28 // chrome.automation namespace.
  /external/chromium_org/chrome/renderer/resources/extensions/automation/
automation_node.js 17 * A single node in the Automation tree.
206 ' {"interact": true} in the "automation" manifest key.');
218 // These attributes are taken directly from the Automation idl.
253 * A set of attributes ignored in the automation API.
308 lastError.set('automation',
309 'Bad update received on automation tree',
318 lastError.set('automation',
319 'Bad update received on automation tree',
344 lastError.set('automation',
345 'Bad update received on automation tree'
    [all...]
  /external/clang/test/CodeGenObjCXX/
debug-info.mm 23 # 13 "automation/automation_window_tracker.h"

Completed in 784 milliseconds

1 2 3 4 5 6 7