diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-10 17:28:06 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-10 17:28:06 +0000 |
commit | 77030daf904058dbb76ab58525b778eb52150f2e (patch) | |
tree | 049bbaa2c93c16ad38cebb1f57467d919048af79 /app | |
parent | 686b9aa07189787576c5bc1bccc002c8bd4f08af (diff) | |
download | chromium_src-77030daf904058dbb76ab58525b778eb52150f2e.zip chromium_src-77030daf904058dbb76ab58525b778eb52150f2e.tar.gz chromium_src-77030daf904058dbb76ab58525b778eb52150f2e.tar.bz2 |
FBTF: Minor gfx/ header cleanup.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/3034039
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55577 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app')
-rw-r--r-- | app/tween.cc | 1 | ||||
-rw-r--r-- | app/tween.h | 2 | ||||
-rw-r--r-- | app/x11_util.cc | 1 | ||||
-rw-r--r-- | app/x11_util.h | 4 |
4 files changed, 5 insertions, 3 deletions
diff --git a/app/tween.cc b/app/tween.cc index 57cd83e..610e01a 100644 --- a/app/tween.cc +++ b/app/tween.cc @@ -10,6 +10,7 @@ #include <float.h> #endif +#include "base/logging.h" #include "gfx/rect.h" // static diff --git a/app/tween.h b/app/tween.h index 15396e9..8909906 100644 --- a/app/tween.h +++ b/app/tween.h @@ -6,7 +6,7 @@ #define APP_TWEEN_H_ #pragma once -#include "base/logging.h" +#include "base/basictypes.h" namespace gfx { class Rect; diff --git a/app/x11_util.cc b/app/x11_util.cc index 101815a..ba014dc 100644 --- a/app/x11_util.cc +++ b/app/x11_util.cc @@ -22,6 +22,7 @@ #include "base/logging.h" #include "base/thread.h" #include "app/x11_util_internal.h" +#include "gfx/rect.h" #include "gfx/size.h" namespace x11_util { diff --git a/app/x11_util.h b/app/x11_util.h index 2c983fc..3e4c7e1 100644 --- a/app/x11_util.h +++ b/app/x11_util.h @@ -15,8 +15,7 @@ #include <string> #include <vector> -#include "base/task.h" -#include "gfx/rect.h" +#include "base/basictypes.h" typedef struct _GdkDrawable GdkWindow; typedef struct _GtkWidget GtkWidget; @@ -30,6 +29,7 @@ class Thread; } namespace gfx { +class Rect; class Size; } |