Searched defs:history (Results 1 - 25 of 211) sorted by path

123456789

/external/chromium_org/base/memory/
H A Dlinked_ptr_unittest.cc15 std::string history; member in namespace:__anon2336
19 A(): mynum(num++) { history += base::StringPrintf("A%d ctor\n", mynum); }
20 virtual ~A() { history += base::StringPrintf("A%d dtor\n", mynum); }
21 virtual void Use() { history += base::StringPrintf("A%d use\n", mynum); }
27 B() { history += base::StringPrintf("B%d ctor\n", mynum); }
28 virtual ~B() { history += base::StringPrintf("B%d dtor\n", mynum); }
30 history += base::StringPrintf("B%d use\n", mynum);
88 ASSERT_EQ(history,
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.h14 #include "components/history/core/android/android_history_types.h"
22 namespace history { namespace
66 // Bookmark and history APIs. -----------------------------------------------
191 history::TopSites* top_sites_;
/external/chromium_org/chrome/browser/autocomplete/
H A Dhistory_quick_provider.h13 #include "chrome/browser/history/in_memory_url_index.h"
14 #include "components/history/core/browser/history_types.h"
20 namespace history { namespace
22 } // namespace history
25 // the history system) which quickly (and synchronously) provides matching
27 // history.
57 const history::ScoredHistoryMatch& history_match,
60 // Returns the index that should be used for history lookups.
61 history::InMemoryURLIndex* GetIndex();
64 void set_index(history
[all...]
H A Dhistory_url_provider.h14 #include "components/history/core/browser/history_match.h"
27 namespace history { namespace
32 // How history autocomplete works
62 // quickly and hit enter, no matter how loaded the main history database is.
69 // The second autocomplete pass uses the full history database, which must be
70 // queried on the history thread. Start() asks the history service schedule to
71 // callback on the history thread with a pointer to the main database. When we
86 // on the history thread, because we should only do that when we can safely
89 // Used to communicate autocomplete parameters between threads via the history
[all...]
H A Dsearch_provider_unittest.cc24 #include "chrome/browser/history/history_service.h"
25 #include "chrome/browser/history/history_service_factory.h"
112 // added to history.
114 // is added to history.
173 // Adds a search for |term|, using the engine |t_url| to the history, and
278 // We need both the history service and template url model loaded.
317 // has been processed on the history thread. Block until history processes all
443 HistoryService* history = local
453 history
[all...]
H A Dshortcuts_backend.h20 #include "chrome/browser/history/shortcuts_database.h"
29 namespace history { namespace
31 }; // namespace history
39 const history::ShortcutsDatabase::Shortcut> ShortcutMap;
96 static history::ShortcutsDatabase::Shortcut::MatchCore MatchToMatchCore(
115 bool AddShortcut(const history::ShortcutsDatabase::Shortcut& shortcut);
118 bool UpdateShortcut(const history::ShortcutsDatabase::Shortcut& shortcut);
122 const history::ShortcutsDatabase::ShortcutIDs& shortcut_ids);
134 scoped_refptr<history::ShortcutsDatabase> db_;
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_remover_unittest.cc25 #include "chrome/browser/history/history_service.h"
26 #include "chrome/browser/history/history_service_factory.h"
394 // Returns true, if the given URL exists in the history service.
411 history::RedirectList(), ui::PAGE_TRANSITION_LINK,
412 history::SOURCE_BROWSED, false);
418 const history::URLRow&,
419 const history::VisitVector&) {
429 // TestingProfile owns the history service; we shouldn't delete it.
1131 // Add some history.
1163 // Add some history
417 SaveResultAndQuit(bool success, const history::URLRow&, const history::VisitVector&) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dcustom_home_pages_table_model.h13 #include "components/history/core/browser/history_types.h"
20 namespace history { namespace
71 // Callback from history service. Updates the title of the Entry whose
75 const history::URLRow& row,
76 const history::VisitVector& visits);
/external/chromium_org/chrome/browser/download/
H A Ddownload_history.cc5 // DownloadHistory manages persisting DownloadItems to the history service by
12 // persisted, and the last history::DownloadRow that was passed to the database.
33 #include "chrome/browser/history/download_database.h"
34 #include "chrome/browser/history/download_row.h"
35 #include "chrome/browser/history/history_service.h"
93 history::DownloadRow* info() { return info_.get(); }
94 void set_info(const history::DownloadRow& i) {
95 info_.reset(new history::DownloadRow(i));
105 scoped_ptr<history::DownloadRow> info_;
114 history
172 HistoryAdapter(HistoryService* history) argument
207 DownloadHistory(content::DownloadManager* manager, scoped_ptr<HistoryAdapter> history) argument
[all...]
H A Ddownload_history.h16 #include "chrome/browser/history/history_service.h"
20 namespace history { namespace
22 } // namespace history
33 explicit HistoryAdapter(HistoryService* history);
40 const history::DownloadRow& info,
43 virtual void UpdateDownload(const history::DownloadRow& data);
58 // the task is posted to the history thread.
60 const history::DownloadRow& info) {}
73 // restored from history.
76 // Neither |manager| nor |history| ma
[all...]
H A Ddownload_service.cc14 #include "chrome/browser/history/history_service.h"
15 #include "chrome/browser/history/history_service_factory.h"
59 HistoryService* history = HistoryServiceFactory::GetForProfile( local
61 history->GetNextDownloadId(
66 new DownloadHistory::HistoryAdapter(history))));
170 // late for us since we need to use the profile (indirectly through history
/external/chromium_org/chrome/browser/drive/
H A Devent_logger_unittest.cc21 std::vector<EventLogger::Event> history = logger.GetHistory(); local
22 ASSERT_EQ(3U, history.size());
23 EXPECT_EQ(0, history[0].id);
24 EXPECT_EQ("first", history[0].what);
25 EXPECT_EQ(1, history[1].id);
26 EXPECT_EQ("2nd", history[1].what);
27 EXPECT_EQ(2, history[2].id);
28 EXPECT_EQ("third", history[2].what);
32 history = logger.GetHistory();
33 ASSERT_EQ(3U, history
[all...]
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_cache_database.cc5 #include "chrome/browser/history/android/android_cache_database.h"
8 #include "chrome/browser/history/android/android_time.h"
14 namespace history { namespace
289 } // namespace history
H A Dandroid_cache_database.h11 #include "components/history/core/android/android_history_types.h"
15 namespace history { namespace
19 // history system shutdown.
107 // Attachs to history database; returns true on success.
118 } // namespace history
H A Dandroid_cache_database_unittest.cc8 #include "chrome/browser/history/android/android_cache_database.h"
9 #include "chrome/browser/history/android/android_time.h"
10 #include "chrome/browser/history/history_database.h"
17 namespace history { namespace
30 temp_dir_.path().AppendASCII("history.db");
48 base::FilePath history_db_name = temp_dir.path().AppendASCII("history.db");
114 } // namespace history
H A Dandroid_provider_backend.cc5 #include "chrome/browser/history/android/android_provider_backend.h"
9 #include "chrome/browser/history/android/android_time.h"
10 #include "chrome/browser/history/android/android_urls_sql_handler.h"
11 #include "chrome/browser/history/android/bookmark_model_sql_handler.h"
12 #include "chrome/browser/history/android/favicon_sql_handler.h"
13 #include "chrome/browser/history/android/urls_sql_handler.h"
14 #include "chrome/browser/history/android/visit_sql_handler.h"
15 #include "chrome/browser/history/history_backend.h"
16 #include "chrome/browser/history/history_database.h"
17 #include "chrome/browser/history/thumbnail_databas
23 namespace history { namespace
[all...]
H A Dandroid_provider_backend.h17 #include "chrome/browser/history/android/android_cache_database.h"
18 #include "chrome/browser/history/android/sql_handler.h"
19 #include "chrome/browser/history/history_backend.h"
20 #include "chrome/browser/history/history_notifications.h"
21 #include "components/history/core/android/android_history_types.h"
25 namespace history { namespace
38 // a. The android_urls table is created in history database if it doesn't
92 // if |selection| is empty all history and bookmarks are deleted.
98 // Deletes the matched history, returns true on success, false on error.
154 // The new transactions are started automatically in both history an
[all...]
H A Dandroid_provider_backend_unittest.cc5 #include "chrome/browser/history/android/android_provider_backend.h"
17 #include "chrome/browser/history/android/android_time.h"
18 #include "chrome/browser/history/chrome_history_client.h"
19 #include "chrome/browser/history/chrome_history_client_factory.h"
20 #include "chrome/browser/history/history_backend.h"
28 #include "components/history/core/browser/keyword_search_term.h"
40 namespace history { namespace
94 const history::BriefVisitInfo& info) OVERRIDE {}
242 // Add a bookmark which is not in the history.
254 history_backend->AddVisits(url1, visits1, history
[all...]
H A Dandroid_time.h10 namespace history { namespace
24 } // namespace history
H A Dandroid_urls_database.cc5 #include "chrome/browser/history/android/android_urls_database.h"
9 namespace history { namespace
179 } // namespace history
H A Dandroid_urls_database.h8 #include "components/history/core/android/android_history_types.h"
10 namespace history { namespace
71 } // namespace history
H A Dandroid_urls_database_unittest.cc5 #include "chrome/browser/history/android/android_urls_database.h"
10 #include "chrome/browser/history/history_database.h"
11 #include "chrome/browser/history/history_unittest_base.h"
16 namespace history { namespace
33 // Set up history as they would be before migration.
35 ExecuteSQLScript(data_path.AppendASCII("history.21.sql"),
67 } // namespace history
H A Dandroid_urls_sql_handler.cc5 #include "chrome/browser/history/android/android_urls_sql_handler.h"
8 #include "chrome/browser/history/history_database.h"
10 namespace history { namespace
62 } // namespace history.
H A Dandroid_urls_sql_handler.h8 #include "chrome/browser/history/android/sql_handler.h"
10 namespace history { namespace
33 } // namespace history.
H A Dbookmark_model_sql_handler.cc5 #include "chrome/browser/history/android/bookmark_model_sql_handler.h"
13 #include "components/history/core/browser/url_database.h"
19 namespace history { namespace
175 } // namespace history

Completed in 3148 milliseconds

123456789