| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |