| 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 "base/time/time.h" | 7 #include "base/time/time.h" |
| 8 #include "cc/layers/texture_layer.h" | 8 #include "cc/layers/texture_layer.h" |
| 9 #include "components/test_runner/web_task.h" | 9 #include "components/test_runner/web_task.h" |
| 10 #include "components/test_runner/web_test_interfaces.h" | 10 #include "components/test_runner/web_test_interfaces.h" |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 | 171 |
| 172 void WebTestDelegateImpl::ClearAllDatabases() { | 172 void WebTestDelegateImpl::ClearAllDatabases() { |
| 173 NOTIMPLEMENTED(); | 173 NOTIMPLEMENTED(); |
| 174 } | 174 } |
| 175 | 175 |
| 176 void WebTestDelegateImpl::SetDatabaseQuota(int quota) { | 176 void WebTestDelegateImpl::SetDatabaseQuota(int quota) { |
| 177 NOTIMPLEMENTED(); | 177 NOTIMPLEMENTED(); |
| 178 } | 178 } |
| 179 | 179 |
| 180 void WebTestDelegateImpl::SimulateWebNotificationClick( | 180 void WebTestDelegateImpl::SimulateWebNotificationClick( |
| 181 const std::string& title) { | 181 const std::string& title, int action_index) { |
| 182 NOTIMPLEMENTED(); | 182 NOTIMPLEMENTED(); |
| 183 } | 183 } |
| 184 | 184 |
| 185 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) { | 185 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) { |
| 186 NOTIMPLEMENTED(); | 186 NOTIMPLEMENTED(); |
| 187 } | 187 } |
| 188 | 188 |
| 189 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) { | 189 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) { |
| 190 NOTIMPLEMENTED(); | 190 NOTIMPLEMENTED(); |
| 191 } | 191 } |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 } | 318 } |
| 319 | 319 |
| 320 blink::WebPlugin* WebTestDelegateImpl::CreatePluginPlaceholder( | 320 blink::WebPlugin* WebTestDelegateImpl::CreatePluginPlaceholder( |
| 321 blink::WebLocalFrame* frame, | 321 blink::WebLocalFrame* frame, |
| 322 const blink::WebPluginParams& params) { | 322 const blink::WebPluginParams& params) { |
| 323 NOTIMPLEMENTED(); | 323 NOTIMPLEMENTED(); |
| 324 return nullptr; | 324 return nullptr; |
| 325 } | 325 } |
| 326 | 326 |
| 327 } // namespace html_viewer | 327 } // namespace html_viewer |
| OLD | NEW |