Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: chrome/test/chromedriver/session_commands.h

Issue 114403005: Adding a LaunchApp command to Chromedriver (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressing additional comments Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 5 #ifndef CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 6 #define CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/callback_forward.h" 10 #include "base/callback_forward.h"
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 Status ExecuteImplicitlyWait( 101 Status ExecuteImplicitlyWait(
102 Session* session, 102 Session* session,
103 const base::DictionaryValue& params, 103 const base::DictionaryValue& params,
104 scoped_ptr<base::Value>* value); 104 scoped_ptr<base::Value>* value);
105 105
106 Status ExecuteIsLoading( 106 Status ExecuteIsLoading(
107 Session* session, 107 Session* session,
108 const base::DictionaryValue& params, 108 const base::DictionaryValue& params,
109 scoped_ptr<base::Value>* value); 109 scoped_ptr<base::Value>* value);
110 110
111 Status ExecuteLaunchApp(
112 Session* session,
113 const base::DictionaryValue& params,
114 scoped_ptr<base::Value>* value);
115
111 Status ExecuteGetLocation( 116 Status ExecuteGetLocation(
112 Session* session, 117 Session* session,
113 const base::DictionaryValue& params, 118 const base::DictionaryValue& params,
114 scoped_ptr<base::Value>* value); 119 scoped_ptr<base::Value>* value);
115 120
116 Status ExecuteGetWindowPosition( 121 Status ExecuteGetWindowPosition(
117 Session* session, 122 Session* session,
118 const base::DictionaryValue& params, 123 const base::DictionaryValue& params,
119 scoped_ptr<base::Value>* value); 124 scoped_ptr<base::Value>* value);
120 125
(...skipping 26 matching lines...) Expand all
147 Session* session, 152 Session* session,
148 const base::DictionaryValue& params, 153 const base::DictionaryValue& params,
149 scoped_ptr<base::Value>* value); 154 scoped_ptr<base::Value>* value);
150 155
151 Status ExecuteUploadFile( 156 Status ExecuteUploadFile(
152 Session* session, 157 Session* session,
153 const base::DictionaryValue& params, 158 const base::DictionaryValue& params,
154 scoped_ptr<base::Value>* value); 159 scoped_ptr<base::Value>* value);
155 160
156 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_ 161 #endif // CHROME_TEST_CHROMEDRIVER_SESSION_COMMANDS_H_
OLDNEW
« no previous file with comments | « chrome/test/chromedriver/server/http_handler.cc ('k') | chrome/test/chromedriver/session_commands.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698