summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history
diff options
context:
space:
mode:
authoragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-05 01:41:22 +0000
committeragl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-05 01:41:22 +0000
commit016e1ae50526c1795f74cbb0f660ad90d1e00413 (patch)
treeecd0a6b467fe2c2648b65edb0ae011a550f980b9 /chrome/browser/history
parent7cfe4b0dc18b7d375bf987275a228639825e9a39 (diff)
downloadchromium_src-016e1ae50526c1795f74cbb0f660ad90d1e00413.zip
chromium_src-016e1ae50526c1795f74cbb0f660ad90d1e00413.tar.gz
chromium_src-016e1ae50526c1795f74cbb0f660ad90d1e00413.tar.bz2
Wrap forward declarations in their relevant namespace
Forward declarations can't simply use "class $namespace::$class;" syntax. Instead one needs to use "namespace $namespace { class $class; }" syntax. Review URL: http://codereview.chromium.org/8722 Patch from James Vega. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4723 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r--chrome/browser/history/thumbnail_database.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/browser/history/thumbnail_database.h b/chrome/browser/history/thumbnail_database.h
index 3b9e1ff..60ad059 100644
--- a/chrome/browser/history/thumbnail_database.h
+++ b/chrome/browser/history/thumbnail_database.h
@@ -15,7 +15,9 @@
struct sqlite3;
struct ThumbnailScore;
-class base::Time;
+ namespace base {
+class Time;
+}
namespace history {