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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_guest.cc

Issue 11953054: Fix high-DPI on Windows to make use of DIP scaling in WebKit. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Remove experimental changes to resource handling. Created 7 years, 11 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "base/bind_helpers.h" 5 #include "base/bind_helpers.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 #include "content/browser/browser_plugin/browser_plugin_guest.h" 8 #include "content/browser/browser_plugin/browser_plugin_guest.h"
9 #include "content/browser/renderer_host/render_view_host_impl.h" 9 #include "content/browser/renderer_host/render_view_host_impl.h"
10 #include "content/browser/renderer_host/render_widget_host_view_guest.h" 10 #include "content/browser/renderer_host/render_widget_host_view_guest.h"
(...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 NOTIMPLEMENTED(); 402 NOTIMPLEMENTED();
403 } 403 }
404 #endif // defined(TOOLKIT_GTK) 404 #endif // defined(TOOLKIT_GTK)
405 405
406 #if defined(OS_WIN) && !defined(USE_AURA) 406 #if defined(OS_WIN) && !defined(USE_AURA)
407 void RenderWidgetHostViewGuest::WillWmDestroy() { 407 void RenderWidgetHostViewGuest::WillWmDestroy() {
408 NOTIMPLEMENTED(); 408 NOTIMPLEMENTED();
409 } 409 }
410 #endif 410 #endif
411 411
412 #if defined(OS_POSIX) || defined(USE_AURA)
413 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) { 412 void RenderWidgetHostViewGuest::GetScreenInfo(WebKit::WebScreenInfo* results) {
414 NOTIMPLEMENTED(); 413 NOTIMPLEMENTED();
415 } 414 }
416 #endif // defined(OS_POSIX) || defined(USE_AURA)
417 415
418 } // namespace content 416 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698