diff options
author | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 23:12:25 +0000 |
---|---|---|
committer | ben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-08 23:12:25 +0000 |
commit | 4a0765a6e06b2e188c68999a52b3fea976e72c40 (patch) | |
tree | 4d5f07ef3228e084d415aee83047b2f243493d7e /views/window | |
parent | 11592b698eb4de8e9874e746f796fe6cd8a56bf6 (diff) | |
download | chromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.zip chromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.tar.gz chromium_src-4a0765a6e06b2e188c68999a52b3fea976e72c40.tar.bz2 |
Move win_util.h from common to app.
http://crbug.com/11387
Review URL: http://codereview.chromium.org/113169
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15694 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/window')
-rw-r--r-- | views/window/custom_frame_view.cc | 2 | ||||
-rw-r--r-- | views/window/non_client_view.cc | 2 | ||||
-rw-r--r-- | views/window/window_win.cc | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/views/window/custom_frame_view.cc b/views/window/custom_frame_view.cc index 8639340..1816fdc 100644 --- a/views/window/custom_frame_view.cc +++ b/views/window/custom_frame_view.cc @@ -9,8 +9,8 @@ #include "app/gfx/path.h" #include "app/resource_bundle.h" #if defined(OS_WIN) +#include "app/win_util.h" #include "base/win_util.h" -#include "chrome/common/win_util.h" #endif #include "grit/theme_resources.h" #include "views/window/client_view.h" diff --git a/views/window/non_client_view.cc b/views/window/non_client_view.cc index 6135a7b..5d5ac76 100644 --- a/views/window/non_client_view.cc +++ b/views/window/non_client_view.cc @@ -5,7 +5,7 @@ #include "views/window/non_client_view.h" #if defined(OS_WIN) -#include "chrome/common/win_util.h" +#include "app/win_util.h" #endif #include "views/widget/root_view.h" #include "views/widget/widget.h" diff --git a/views/window/window_win.cc b/views/window/window_win.cc index f41ef18..40ec924 100644 --- a/views/window/window_win.cc +++ b/views/window/window_win.cc @@ -12,9 +12,9 @@ #include "app/gfx/path.h" #include "app/l10n_util.h" #include "app/resource_bundle.h" +#include "app/win_util.h" #include "base/win_util.h" #include "chrome/app/chrome_dll_resource.h" -#include "chrome/common/win_util.h" #include "grit/generated_resources.h" #include "views/widget/root_view.h" #include "views/window/client_view.h" |