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

Side by Side Diff: components/html_viewer/web_test_delegate_impl.cc

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, 2 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
« 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 #include "components/html_viewer/web_test_delegate_impl.h" 5 #include "components/html_viewer/web_test_delegate_impl.h"
6 6
7 #include <iostream> 7 #include <iostream>
8 8
9 #include "base/time/time.h" 9 #include "base/time/time.h"
10 #include "cc/layers/texture_layer.h" 10 #include "cc/layers/texture_layer.h"
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 } 194 }
195 195
196 void WebTestDelegateImpl::SetBluetoothMockDataSet(const std::string& data_set) { 196 void WebTestDelegateImpl::SetBluetoothMockDataSet(const std::string& data_set) {
197 NOTIMPLEMENTED(); 197 NOTIMPLEMENTED();
198 } 198 }
199 199
200 void WebTestDelegateImpl::SetBluetoothManualChooser() { 200 void WebTestDelegateImpl::SetBluetoothManualChooser() {
201 NOTIMPLEMENTED(); 201 NOTIMPLEMENTED();
202 } 202 }
203 203
204 std::vector<std::string> 204 void WebTestDelegateImpl::GetBluetoothManualChooserEvents(
205 WebTestDelegateImpl::GetBluetoothManualChooserEvents() { 205 const base::Callback<void(const std::vector<std::string>&)>& callback) {
206 NOTIMPLEMENTED(); 206 NOTIMPLEMENTED();
207 return std::vector<std::string>();
208 } 207 }
209 208
210 void WebTestDelegateImpl::SendBluetoothManualChooserEvent( 209 void WebTestDelegateImpl::SendBluetoothManualChooserEvent(
211 const std::string& event, 210 const std::string& event,
212 const std::string& argument) { 211 const std::string& argument) {
213 NOTIMPLEMENTED(); 212 NOTIMPLEMENTED();
214 } 213 }
215 214
216 void WebTestDelegateImpl::SetGeofencingMockProvider(bool service_available) { 215 void WebTestDelegateImpl::SetGeofencingMockProvider(bool service_available) {
217 NOTIMPLEMENTED(); 216 NOTIMPLEMENTED();
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 const blink::WebPluginParams& params) { 332 const blink::WebPluginParams& params) {
334 NOTIMPLEMENTED(); 333 NOTIMPLEMENTED();
335 return nullptr; 334 return nullptr;
336 } 335 }
337 336
338 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( 337 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy(
339 test_runner::WebTestProxyBase* base) { 338 test_runner::WebTestProxyBase* base) {
340 } 339 }
341 340
342 } // namespace html_viewer 341 } // namespace html_viewer
OLDNEW
« 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