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

Unified Diff: components/html_viewer/web_test_delegate_impl.cc

Issue 1325953002: Add functions to let tests read and control the Bluetooth chooser state. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkcr
Patch Set: Add a forgotten semicolon. :-/ 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « components/html_viewer/web_test_delegate_impl.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/web_test_delegate_impl.cc
diff --git a/components/html_viewer/web_test_delegate_impl.cc b/components/html_viewer/web_test_delegate_impl.cc
index 613420a57167b81c82564d2c772c012ce18b884a..773ad69b47fc162b56b82b93e488d595d71e2a85 100644
--- a/components/html_viewer/web_test_delegate_impl.cc
+++ b/components/html_viewer/web_test_delegate_impl.cc
@@ -195,6 +195,22 @@ void WebTestDelegateImpl::SetBluetoothMockDataSet(const std::string& data_set) {
NOTIMPLEMENTED();
}
+void WebTestDelegateImpl::SetBluetoothManualChooser() {
+ NOTIMPLEMENTED();
+}
+
+std::vector<std::string>
+WebTestDelegateImpl::GetBluetoothManualChooserEvents() {
+ NOTIMPLEMENTED();
+ return std::vector<std::string>();
+}
+
+void WebTestDelegateImpl::SendBluetoothManualChooserEvent(
+ const std::string& event,
+ const std::string& argument) {
+ NOTIMPLEMENTED();
+}
+
void WebTestDelegateImpl::SetGeofencingMockProvider(bool service_available) {
NOTIMPLEMENTED();
}
« no previous file with comments | « components/html_viewer/web_test_delegate_impl.h ('k') | components/test_runner/test_runner.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698