summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_paths_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/common/chrome_paths_linux.cc')
-rw-r--r--chrome/common/chrome_paths_linux.cc4
1 files changed, 0 insertions, 4 deletions
diff --git a/chrome/common/chrome_paths_linux.cc b/chrome/common/chrome_paths_linux.cc
index b1151c5..d3ce207 100644
--- a/chrome/common/chrome_paths_linux.cc
+++ b/chrome/common/chrome_paths_linux.cc
@@ -4,9 +4,7 @@
#include "chrome/common/chrome_paths_internal.h"
-#if defined(TOOLKIT_GTK)
#include <glib.h>
-#endif
#include <stdlib.h>
#include "base/file_path.h"
@@ -21,11 +19,9 @@ FilePath GetHomeDir() {
if (home_dir && home_dir[0])
return FilePath(home_dir);
-#if defined(TOOLKIT_GTK)
home_dir = g_get_home_dir();
if (home_dir && home_dir[0])
return FilePath(home_dir);
-#endif
FilePath rv;
if (PathService::Get(base::DIR_TEMP, &rv))