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

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

Issue 1656823002: Add layout tests for ServiceWorker's notificationclose event. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Refactored data reflection tests + nits Created 4 years, 10 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 #include <utility> 8 #include <utility>
9 9
10 #include "base/time/time.h" 10 #include "base/time/time.h"
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 187
188 void WebTestDelegateImpl::SetDatabaseQuota(int quota) { 188 void WebTestDelegateImpl::SetDatabaseQuota(int quota) {
189 NOTIMPLEMENTED(); 189 NOTIMPLEMENTED();
190 } 190 }
191 191
192 void WebTestDelegateImpl::SimulateWebNotificationClick( 192 void WebTestDelegateImpl::SimulateWebNotificationClick(
193 const std::string& title, int action_index) { 193 const std::string& title, int action_index) {
194 NOTIMPLEMENTED(); 194 NOTIMPLEMENTED();
195 } 195 }
196 196
197 void WebTestDelegateImpl::SimulateWebNotificationClose(
198 const std::string& title, bool by_user) {
199 NOTIMPLEMENTED();
200 }
201
197 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) { 202 void WebTestDelegateImpl::SetDeviceScaleFactor(float factor) {
198 NOTIMPLEMENTED(); 203 NOTIMPLEMENTED();
199 } 204 }
200 205
201 void WebTestDelegateImpl::EnableUseZoomForDSF() { 206 void WebTestDelegateImpl::EnableUseZoomForDSF() {
202 NOTIMPLEMENTED(); 207 NOTIMPLEMENTED();
203 } 208 }
204 209
205 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) { 210 void WebTestDelegateImpl::SetDeviceColorProfile(const std::string& name) {
206 NOTIMPLEMENTED(); 211 NOTIMPLEMENTED();
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 test_runner::WebTestProxyBase* base) { 368 test_runner::WebTestProxyBase* base) {
364 } 369 }
365 370
366 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative( 371 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative(
367 const blink::WebPoint& point_in_dip) const { 372 const blink::WebPoint& point_in_dip) const {
368 NOTIMPLEMENTED(); 373 NOTIMPLEMENTED();
369 return point_in_dip; 374 return point_in_dip;
370 } 375 }
371 376
372 } // namespace html_viewer 377 } // 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