summaryrefslogtreecommitdiffstats
path: root/chrome/browser/history
diff options
context:
space:
mode:
authorbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-07 19:18:10 +0000
committerbrettw@google.com <brettw@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-07 19:18:10 +0000
commitcf89caabe78424a65bad314f16461c3bdda34924 (patch)
treec7f99f501fa3663ccf1245db0d7f73e2561f61c6 /chrome/browser/history
parent599874373cf5ae8b1ba75afda760534063012ccd (diff)
downloadchromium_src-cf89caabe78424a65bad314f16461c3bdda34924.zip
chromium_src-cf89caabe78424a65bad314f16461c3bdda34924.tar.gz
chromium_src-cf89caabe78424a65bad314f16461c3bdda34924.tar.bz2
Fix initialization order to fix Mac & Linux.
Review URL: http://codereview.chromium.org/10209 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5003 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/history')
-rw-r--r--chrome/browser/history/text_database_manager.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/history/text_database_manager.cc b/chrome/browser/history/text_database_manager.cc
index 8fcb8fc..ed280fe 100644
--- a/chrome/browser/history/text_database_manager.cc
+++ b/chrome/browser/history/text_database_manager.cc
@@ -78,8 +78,8 @@ TextDatabaseManager::TextDatabaseManager(const std::wstring& dir,
transaction_nesting_(0),
db_cache_(DBCache::NO_AUTO_EVICT),
present_databases_loaded_(false),
- history_publisher_(NULL),
- ALLOW_THIS_IN_INITIALIZER_LIST(factory_(this)) {
+ ALLOW_THIS_IN_INITIALIZER_LIST(factory_(this)),
+ history_publisher_(NULL) {
}
TextDatabaseManager::~TextDatabaseManager() {