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

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

Issue 1525933002: Support device scale factor test with popups in LayoutTest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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
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 340 matching lines...) Expand 10 before | Expand all | Expand 10 after
351 blink::WebLocalFrame* frame, 351 blink::WebLocalFrame* frame,
352 const blink::WebPluginParams& params) { 352 const blink::WebPluginParams& params) {
353 NOTIMPLEMENTED(); 353 NOTIMPLEMENTED();
354 return nullptr; 354 return nullptr;
355 } 355 }
356 356
357 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy( 357 void WebTestDelegateImpl::OnWebTestProxyBaseDestroy(
358 test_runner::WebTestProxyBase* base) { 358 test_runner::WebTestProxyBase* base) {
359 } 359 }
360 360
361 blink::WebPoint WebTestDelegateImpl::ConvertDIPToNative(
362 const blink::WebPoint& point_in_dip) const {
363 NOTIMPLEMENTED();
364 return point_in_dip;
365 }
366
361 } // namespace html_viewer 367 } // namespace html_viewer
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698