Searched refs:command (Results 276 - 300 of 1145) sorted by path

<<11121314151617181920>>

/external/chromium_org/content/browser/devtools/
H A Ddevtools_system_info_handler.h21 scoped_refptr<DevToolsProtocol::Command> command);
H A Ddevtools_tracing_handler.cc115 scoped_refptr<DevToolsProtocol::Command> command) {
117 return command->InternalErrorResponse("Tracing is already started");
125 base::DictionaryValue* params = command->params();
155 command));
156 return command->AsyncResponsePromise();
180 scoped_refptr<DevToolsProtocol::Command> command) {
181 SendAsyncResponse(command->SuccessResponse(NULL));
192 scoped_refptr<DevToolsProtocol::Command> command) {
194 return command->InternalErrorResponse("Tracing is not started");
201 return command
114 OnStart( scoped_refptr<DevToolsProtocol::Command> command) argument
179 OnRecordingEnabled( scoped_refptr<DevToolsProtocol::Command> command) argument
191 OnEnd( scoped_refptr<DevToolsProtocol::Command> command) argument
217 OnGetCategories( scoped_refptr<DevToolsProtocol::Command> command) argument
226 OnCategoriesReceived( scoped_refptr<DevToolsProtocol::Command> command, const std::set<std::string>& category_set) argument
[all...]
H A Ddevtools_tracing_handler.h37 void OnRecordingEnabled(scoped_refptr<DevToolsProtocol::Command> command);
41 scoped_refptr<DevToolsProtocol::Command> command);
43 scoped_refptr<DevToolsProtocol::Command> command);
46 scoped_refptr<DevToolsProtocol::Command> command);
48 void OnCategoriesReceived(scoped_refptr<DevToolsProtocol::Command> command,
H A Drender_view_devtools_agent_host.cc138 scoped_refptr<DevToolsProtocol::Command> command = local
141 if (command.get()) {
154 overridden_response = overrides_handler_->HandleCommand(command);
156 overridden_response = tracing_handler_->HandleCommand(command);
158 overridden_response = power_handler_->HandleCommand(command);
H A Drenderer_overrides_handler.cc316 scoped_refptr<DevToolsProtocol::Command> command) {
317 base::DictionaryValue* params = command->params();
322 return command->InvalidParamResponse(param);
329 return command->InvalidParamResponse(param);
341 scoped_refptr<DevToolsProtocol::Command> command) {
344 return command->SuccessResponse(result);
349 scoped_refptr<DevToolsProtocol::Command> command) {
351 return command->SuccessResponse(NULL);
356 scoped_refptr<DevToolsProtocol::Command> command) {
358 return command
315 GrantPermissionsForSetFileInputFiles( scoped_refptr<DevToolsProtocol::Command> command) argument
340 CanEmulateNetworkConditions( scoped_refptr<DevToolsProtocol::Command> command) argument
348 ClearBrowserCache( scoped_refptr<DevToolsProtocol::Command> command) argument
355 ClearBrowserCookies( scoped_refptr<DevToolsProtocol::Command> command) argument
365 PageEnable( scoped_refptr<DevToolsProtocol::Command> command) argument
373 PageDisable( scoped_refptr<DevToolsProtocol::Command> command) argument
382 PageHandleJavaScriptDialog( scoped_refptr<DevToolsProtocol::Command> command) argument
414 PageNavigate( scoped_refptr<DevToolsProtocol::Command> command) argument
441 PageReload( scoped_refptr<DevToolsProtocol::Command> command) argument
459 PageGetNavigationHistory( scoped_refptr<DevToolsProtocol::Command> command) argument
494 PageNavigateToHistoryEntry( scoped_refptr<DevToolsProtocol::Command> command) argument
521 PageCaptureScreenshot( scoped_refptr<DevToolsProtocol::Command> command) argument
532 ScreenshotCaptured( scoped_refptr<DevToolsProtocol::Command> command, const unsigned char* png_data, size_t png_size) argument
555 PageSetTouchEmulationEnabled( scoped_refptr<DevToolsProtocol::Command> command) argument
574 PageCanEmulate( scoped_refptr<DevToolsProtocol::Command> command) argument
592 PageCanScreencast( scoped_refptr<DevToolsProtocol::Command> command) argument
604 PageStartScreencast( scoped_refptr<DevToolsProtocol::Command> command) argument
623 PageStopScreencast( scoped_refptr<DevToolsProtocol::Command> command) argument
908 PageQueryUsageAndQuota( scoped_refptr<DevToolsProtocol::Command> command) argument
941 PageQueryUsageAndQuotaCompleted( scoped_refptr<DevToolsProtocol::Command> command, scoped_ptr<base::DictionaryValue> response_data) argument
958 PageSetColorPickerEnabled( scoped_refptr<DevToolsProtocol::Command> command) argument
1197 InputEmulateTouchFromMouseEvent( scoped_refptr<DevToolsProtocol::Command> command) argument
[all...]
H A Drenderer_overrides_handler.h58 scoped_refptr<DevToolsProtocol::Command> command);
62 scoped_refptr<DevToolsProtocol::Command> command);
64 scoped_refptr<DevToolsProtocol::Command> command);
66 scoped_refptr<DevToolsProtocol::Command> command);
70 scoped_refptr<DevToolsProtocol::Command> command);
72 scoped_refptr<DevToolsProtocol::Command> command);
74 scoped_refptr<DevToolsProtocol::Command> command);
76 scoped_refptr<DevToolsProtocol::Command> command);
78 scoped_refptr<DevToolsProtocol::Command> command);
80 scoped_refptr<DevToolsProtocol::Command> command);
[all...]
H A Dtethering_handler.cc259 static int GetPort(scoped_refptr<DevToolsProtocol::Command> command, argument
261 base::DictionaryValue* params = command->params();
271 TetheringHandler::OnBind(scoped_refptr<DevToolsProtocol::Command> command) { argument
273 int port = GetPort(command, portParamName);
275 return command->InvalidParamResponse(portParamName);
278 return command->InternalErrorResponse("Port already bound");
282 return command->InternalErrorResponse("Could not bind port");
285 return command->SuccessResponse(NULL);
289 TetheringHandler::OnUnbind(scoped_refptr<DevToolsProtocol::Command> command) { argument
291 int port = GetPort(command, portParamNam
[all...]
H A Dtethering_handler.h27 scoped_refptr<DevToolsProtocol::Command> command);
29 scoped_refptr<DevToolsProtocol::Command> command);
/external/chromium_org/content/browser/media/
H A Dmedia_canplaytype_browsertest.cc53 std::string command("document.createElement('video').canPlayType(");
54 command.append(type);
55 command.append(")");
60 "window.domAutomationController.send(" + command + ");",
H A Dwebrtc_getusermedia_browsertest.cc184 std::string command = "twoGetUserMedia(" + constraints1 + ',' + local
187 EXPECT_EQ(expected_result, ExecuteJavascriptAndReturnResult(command));
502 std::string command = "twoGetUserMediaAndVerifyFrameRate(" + local
504 ExecuteJavascriptAndWaitForOk(command);
H A Dwebrtc_internals.cc278 void WebRTCInternals::SendUpdate(const string& command, base::Value* value) { argument
283 OnUpdate(command, value));
H A Dwebrtc_internals.h116 void SendUpdate(const std::string& command, base::Value* value);
H A Dwebrtc_internals_message_handler.cc74 void WebRTCInternalsMessageHandler::OnUpdate(const std::string& command, argument
80 base::string16 update = WebUI::GetJavascriptCall(command, args_vector);
H A Dwebrtc_internals_message_handler.h30 virtual void OnUpdate(const std::string& command,
H A Dwebrtc_internals_ui_observer.h23 virtual void OnUpdate(const std::string& command,
H A Dwebrtc_internals_unittest.cc23 virtual void OnUpdate(const std::string& command,
25 command_ = command;
30 std::string command() { function in class:content::__anon7265::MockWebRTCInternalsProxy
103 EXPECT_EQ("", observer->command());
114 EXPECT_EQ("addPeerConnection", observer->command());
136 EXPECT_EQ("removePeerConnection", observer->command());
159 EXPECT_EQ("updatePeerConnection", observer->command());
190 EXPECT_EQ("addGetUserMedia", observer->command());
210 EXPECT_EQ("addGetUserMedia", observer->command());
232 EXPECT_EQ("updateAllPeerConnections", observer->command());
[all...]
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_impl.cc2019 void RenderWidgetHostImpl::ExecuteEditCommand(const std::string& command, argument
2021 Send(new InputMsg_ExecuteEditCommand(GetRoutingID(), command, value));
2249 // This feature is behind the kEnableGpuBenchmarking command line switch
H A Drender_widget_host_impl.h379 // Executes the edit command on the RenderView.
380 void ExecuteEditCommand(const std::string& command,
/external/chromium_org/content/browser/resources/service_worker/
H A Dserviceworker_internals.js46 function commandHandler(command) {
50 sendCommand(command, link.cmdArgs, (function(status) {
58 function sendCommand(command, args, callback) {
64 chrome.send(command, [callbackId, args]);
67 // Fired from the backend after the command call has completed.
/external/chromium_org/content/browser/web_contents/
H A Dweb_contents_impl_unittest.cc81 virtual void CommandReceived(const std::string& command) OVERRIDE;
200 void TestInterstitialPageDelegate::CommandReceived(const std::string& command) { argument
1957 // Run a command.
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DChildProcessLauncher.java317 for (String command : commandLine) {
318 if (command != null && command.startsWith(switchKeyPrefix)) {
319 return command.substring(switchKeyPrefix.length());
332 * @param commandLine The child process command line argv.
H A DInterstitialPageDelegateAndroid.java49 * Called when a command has been received from the interstitial.
51 * @param command The command that was received.
54 protected void commandReceived(String command) { argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DInterstitialPageTest.java95 "function sendCommand(command) {" +
97 "window.domAutomationController.send(command);" +
109 protected void commandReceived(String command) {
110 assertEquals(command, proceedCommand);
/external/chromium_org/content/public/browser/
H A Ddevtools_manager_delegate.h39 base::DictionaryValue* command) = 0;
H A Ddevtools_protocol_constants_generator.py171 for command in domain["commands"]:
172 if (IsHandledInBrowser(command)):
173 domain_value[command["name"]] = CreateNamespace(domain["domain"],
174 command, ["parameters", "returns"], ["kParam", "kResponse"],
175 domain_namespace_name + "." + command["name"])

Completed in 490 milliseconds

<<11121314151617181920>>