Chromium Code Reviews

Side by Side Diff: chrome/browser/history/top_sites.cc

Issue 3203008: Move prefs-related files under chrome/browser/ into a prefs/ subdir. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Created 10 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/history/top_sites.h" 5 #include "chrome/browser/history/top_sites.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "app/l10n_util.h" 9 #include "app/l10n_util.h"
10 #include "base/command_line.h" 10 #include "base/command_line.h"
11 #include "base/file_util.h" 11 #include "base/file_util.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/md5.h" 13 #include "base/md5.h"
14 #include "base/string_util.h" 14 #include "base/string_util.h"
15 #include "base/utf_string_conversions.h" 15 #include "base/utf_string_conversions.h"
16 #include "base/values.h" 16 #include "base/values.h"
17 #include "chrome/browser/chrome_thread.h" 17 #include "chrome/browser/chrome_thread.h"
18 #include "chrome/browser/dom_ui/most_visited_handler.h" 18 #include "chrome/browser/dom_ui/most_visited_handler.h"
19 #include "chrome/browser/history/history_notifications.h" 19 #include "chrome/browser/history/history_notifications.h"
20 #include "chrome/browser/history/page_usage_data.h" 20 #include "chrome/browser/history/page_usage_data.h"
21 #include "chrome/browser/history/top_sites_database.h" 21 #include "chrome/browser/history/top_sites_database.h"
22 #include "chrome/browser/pref_service.h" 22 #include "chrome/browser/prefs/pref_service.h"
23 #include "chrome/browser/profile.h" 23 #include "chrome/browser/profile.h"
24 #include "chrome/browser/tab_contents/navigation_controller.h" 24 #include "chrome/browser/tab_contents/navigation_controller.h"
25 #include "chrome/browser/tab_contents/navigation_entry.h" 25 #include "chrome/browser/tab_contents/navigation_entry.h"
26 #include "chrome/common/chrome_switches.h" 26 #include "chrome/common/chrome_switches.h"
27 #include "chrome/common/pref_names.h" 27 #include "chrome/common/pref_names.h"
28 #include "chrome/common/thumbnail_score.h" 28 #include "chrome/common/thumbnail_score.h"
29 #include "gfx/codec/jpeg_codec.h" 29 #include "gfx/codec/jpeg_codec.h"
30 #include "grit/chromium_strings.h" 30 #include "grit/chromium_strings.h"
31 #include "grit/generated_resources.h" 31 #include "grit/generated_resources.h"
32 #include "grit/locale_settings.h" 32 #include "grit/locale_settings.h"
(...skipping 846 matching lines...)
879 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::DB)); 879 DCHECK(ChromeThread::CurrentlyOn(ChromeThread::DB));
880 db_.reset(new TopSitesDatabaseImpl()); 880 db_.reset(new TopSitesDatabaseImpl());
881 file_util::Delete(db_path_, false); 881 file_util::Delete(db_path_, false);
882 if (!db_->Init(db_path_)) { 882 if (!db_->Init(db_path_)) {
883 NOTREACHED() << "Failed to initialize database."; 883 NOTREACHED() << "Failed to initialize database.";
884 return; 884 return;
885 } 885 }
886 } 886 }
887 887
888 } // namespace history 888 } // namespace history
OLDNEW

Powered by Google App Engine