diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-10 20:42:47 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-09-10 20:42:47 +0000 |
commit | 5981e2d822372fb03c7e97ac122f4f7290dd499f (patch) | |
tree | aea82a17bc92fbe092720dbb879202c5dea83976 /remoting | |
parent | c3da595f4c87b295db2bfbf56fcf994f53881449 (diff) | |
download | chromium_src-5981e2d822372fb03c7e97ac122f4f7290dd499f.zip chromium_src-5981e2d822372fb03c7e97ac122f4f7290dd499f.tar.gz chromium_src-5981e2d822372fb03c7e97ac122f4f7290dd499f.tar.bz2 |
Move ui/base/win/dpi.h to ui/gfx/dpi_win.h
Also moves hidpi switch to gfx/switches.h
R=sky@chromium.org
http://crbug.com/103304
Review URL: https://codereview.chromium.org/23451036
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@222336 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/host/plugin/host_plugin.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/host/plugin/host_plugin.cc b/remoting/host/plugin/host_plugin.cc index 0a8b161..b8e2b13 100644 --- a/remoting/host/plugin/host_plugin.cc +++ b/remoting/host/plugin/host_plugin.cc @@ -21,7 +21,7 @@ #include "remoting/host/plugin/host_plugin_utils.h" #include "remoting/host/plugin/host_script_object.h" #if defined(OS_WIN) -#include "ui/base/win/dpi.h" +#include "ui/gfx/dpi_win.h" #endif #include "third_party/npapi/bindings/npapi.h" #include "third_party/npapi/bindings/npfunctions.h" @@ -545,7 +545,7 @@ EXPORT NPError API_CALL NP_Initialize(NPNetscapeFuncs* npnetscape_funcs #endif #if defined(OS_WIN) - ui::EnableHighDPISupport(); + gfx::EnableHighDPISupport(); #endif return NPERR_NO_ERROR; |