| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index f37f453192b0288959dd83880c2c4c6d2cfb4bda..6da457c6b6f0a11add93629fb492b5f4e0ea67aa 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -199,7 +199,7 @@
|
| #include "content/common/font_cache_dispatcher_win.h"
|
| #include "content/common/sandbox_win.h"
|
| #include "sandbox/win/src/sandbox_policy.h"
|
| -#include "ui/gfx/win/dpi.h"
|
| +#include "ui/display/win/dpi.h"
|
| #endif
|
|
|
| #if defined(OS_MACOSX)
|
| @@ -1380,8 +1380,9 @@ void RenderProcessHostImpl::AppendRendererCommandLine(
|
| command_line->AppendSwitch(switches::kEnablePinch);
|
|
|
| #if defined(OS_WIN)
|
| - command_line->AppendSwitchASCII(switches::kDeviceScaleFactor,
|
| - base::DoubleToString(gfx::GetDPIScale()));
|
| + command_line->AppendSwitchASCII(
|
| + switches::kDeviceScaleFactor,
|
| + base::DoubleToString(display::win::GetDPIScale()));
|
| #endif
|
|
|
| AppendCompositorCommandLineFlags(command_line);
|
|
|