diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-27 14:34:12 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-27 14:34:12 +0000 |
commit | 0082d7e0d4531edc2a923ec9ca990c74397cdae2 (patch) | |
tree | a669316a8a234b44f39ebf085d5b5785d7357ce9 /chrome/common/platform_util_linux.cc | |
parent | 1b7e93b7e3ac1f74f61a83d6c6eb1575d427b578 (diff) | |
download | chromium_src-0082d7e0d4531edc2a923ec9ca990c74397cdae2.zip chromium_src-0082d7e0d4531edc2a923ec9ca990c74397cdae2.tar.gz chromium_src-0082d7e0d4531edc2a923ec9ca990c74397cdae2.tar.bz2 |
Continue removing bad dependency of chrome/common on chrome/browser
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/661178
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40224 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/platform_util_linux.cc')
-rw-r--r-- | chrome/common/platform_util_linux.cc | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/chrome/common/platform_util_linux.cc b/chrome/common/platform_util_linux.cc index 5baaefc..816fca7 100644 --- a/chrome/common/platform_util_linux.cc +++ b/chrome/common/platform_util_linux.cc @@ -9,7 +9,6 @@ #include "base/file_util.h" #include "base/process_util.h" #include "base/string_util.h" -#include "chrome/browser/gtk/gtk_theme_provider.h" #include "chrome/common/gtk_util.h" #include "chrome/common/process_watcher.h" #include "googleurl/src/gurl.h" @@ -73,11 +72,6 @@ gfx::NativeWindow GetTopLevel(gfx::NativeView view) { return GTK_IS_WINDOW(toplevel) ? GTK_WINDOW(toplevel) : NULL; } -string16 GetWindowTitle(gfx::NativeWindow window) { - const gchar* title = gtk_window_get_title(window); - return UTF8ToUTF16(title); -} - bool IsWindowActive(gfx::NativeWindow window) { return gtk_window_is_active(window); } |