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

Side by Side Diff: content/shell/browser/blink_test_controller.h

Issue 1351393002: Make getBluetoothManualChooserEvents() asynchronous. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Go back to the callback interface. Created 5 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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 CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ 5 #ifndef CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_
6 #define CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ 6 #define CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_
7 7
8 #include <ostream> 8 #include <ostream>
9 #include <string> 9 #include <string>
10 10
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 const std::string& frontend_url); 176 const std::string& frontend_url);
177 void OnCloseDevTools(); 177 void OnCloseDevTools();
178 void OnGoToOffset(int offset); 178 void OnGoToOffset(int offset);
179 void OnReload(); 179 void OnReload();
180 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name); 180 void OnLoadURLForFrame(const GURL& url, const std::string& frame_name);
181 void OnCaptureSessionHistory(); 181 void OnCaptureSessionHistory();
182 void OnCloseRemainingWindows(); 182 void OnCloseRemainingWindows();
183 void OnResetDone(); 183 void OnResetDone();
184 void OnLeakDetectionDone(const content::LeakDetectionResult& result); 184 void OnLeakDetectionDone(const content::LeakDetectionResult& result);
185 void OnSetBluetoothManualChooser(bool enable); 185 void OnSetBluetoothManualChooser(bool enable);
186 void OnGetBluetoothManualChooserEvents(std::vector<std::string>* events); 186 void OnGetBluetoothManualChooserEvents();
187 void OnSendBluetoothManualChooserEvent(const std::string& event, 187 void OnSendBluetoothManualChooserEvent(const std::string& event,
188 const std::string& argument); 188 const std::string& argument);
189 189
190 scoped_ptr<BlinkTestResultPrinter> printer_; 190 scoped_ptr<BlinkTestResultPrinter> printer_;
191 191
192 base::FilePath current_working_directory_; 192 base::FilePath current_working_directory_;
193 base::FilePath temp_path_; 193 base::FilePath temp_path_;
194 194
195 Shell* main_window_; 195 Shell* main_window_;
196 196
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
232 // waiting on the UI thread while layout tests are being ran. 232 // waiting on the UI thread while layout tests are being ran.
233 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_; 233 ScopedAllowWaitForAndroidLayoutTests reduced_restrictions_;
234 #endif 234 #endif
235 235
236 DISALLOW_COPY_AND_ASSIGN(BlinkTestController); 236 DISALLOW_COPY_AND_ASSIGN(BlinkTestController);
237 }; 237 };
238 238
239 } // namespace content 239 } // namespace content
240 240
241 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_ 241 #endif // CONTENT_SHELL_BROWSER_BLINK_TEST_CONTROLLER_H_
OLDNEW
« no previous file with comments | « components/test_runner/web_test_delegate.h ('k') | content/shell/browser/blink_test_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698