Searched defs:history (Results 251 - 275 of 325) sorted by relevance

<<111213

/external/chromium_org/chrome/browser/prerender/
H A Dprerender_contents.h39 namespace history { namespace
258 // Called by the history tab helper with the information that it woudl have
259 // added to the history service had this web contents not been used for
261 void DidNavigate(const history::HistoryAddPageArgs& add_page_args);
263 // Applies all the URL history encountered during prerendering to the
419 typedef std::vector<history::HistoryAddPageArgs> AddPageVector;
421 // Caches pages to be added to the history.
/external/chromium_org/chrome/browser/sync/glue/
H A Dbookmark_change_processor.cc21 #include "chrome/browser/history/history_service.h"
22 #include "chrome/browser/history/history_service_factory.h"
774 HistoryService* history = local
779 history->AddPageNoVisitForBookmark(bookmark_node->url(),
783 // gfx::kFaviconSize in width and height. Store the favicon into history
/external/chromium_org/chrome/browser/ui/webui/memory_internals/
H A Dmemory_internals_proxy.cc316 if (!process->GetList("history", &tabs)) {
318 process->Set("history", tabs);
325 tab->Set("history", histories);
331 base::DictionaryValue* history = new base::DictionaryValue(); local
332 histories->Append(history);
333 history->SetString("url", entry->GetURL().spec());
334 history->SetString("title", entry->GetTitle());
335 history->SetInteger("time", (base::Time::Now() -
/external/chromium_org/chrome/test/automation/
H A Dproxy_launcher.cc77 // We want to have a current history database when we start the browser so
79 // in the history to be more recent.
84 base::FilePath history = local
86 // Not all test profiles have a history file.
87 if (!base::PathExists(history))
90 ASSERT_TRUE(db.Open(history));
100 file_util::EvictFileFromSystemCache(history);
228 // Update the history file to include recent dates.
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DDOMPatchSupport.cpp73 InspectorHistory history; local
74 DOMEditor domEditor(&history);
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFrameLoader.h86 HistoryController* history() const { return &m_history; } function in class:WebCore::FrameLoader
94 void load(const FrameLoadRequest&); // The entry point for non-reload, non-history loads.
/external/icu4c/test/intltest/
H A Dcolldata.cpp491 int32_t CollData::minLengthInChars(const CEList *ceList, int32_t offset, int32_t *history) const
496 if (history[offset] >= 0) {
497 return history[offset];
526 rlength = minLengthInChars(ceList, roffset, history);
555 //history[roffset++] = -1;
556 //history[roffset++] = 1;
559 rlength = minLengthInChars(ceList, roffset, history);
601 rlength = minLengthInChars(ceList, roffset, history);
617 history[offset] = shortestLength;
625 int32_t *history local
[all...]
/external/chromium/chrome/browser/bookmarks/
H A Dbookmark_model.cc17 #include "chrome/browser/history/history_notifications.h"
64 void BookmarkNode::Reset(const history::StarredEntry& entry) {
65 DCHECK(entry.type != history::StarredEntry::URL || entry.url == url_);
69 case history::StarredEntry::URL:
72 case history::StarredEntry::USER_FOLDER:
75 case history::StarredEntry::BOOKMARK_BAR:
78 case history::StarredEntry::OTHER:
605 history::URLsStarredDetails details(false);
638 HistoryService* history = local
640 if (history)
[all...]
/external/chromium/chrome/browser/history/
H A Dexpire_history_backend.cc5 #include "chrome/browser/history/expire_history_backend.h"
14 #include "chrome/browser/history/archived_database.h"
15 #include "chrome/browser/history/history_database.h"
16 #include "chrome/browser/history/history_notifications.h"
17 #include "chrome/browser/history/text_database.h"
18 #include "chrome/browser/history/text_database_manager.h"
19 #include "chrome/browser/history/thumbnail_database.h"
25 namespace history { namespace
123 // history to expire last iteration, it's likely there is nothing next
128 // delete old history inde
[all...]
H A Dexpire_history_backend_unittest.cc18 #include "chrome/browser/history/archived_database.h"
19 #include "chrome/browser/history/expire_history_backend.h"
20 #include "chrome/browser/history/history_database.h"
21 #include "chrome/browser/history/history_notifications.h"
22 #include "chrome/browser/history/text_database_manager.h"
23 #include "chrome/browser/history/thumbnail_database.h"
24 #include "chrome/browser/history/top_sites.h"
44 // The test must be in the history namespace for the gtest forward declarations
45 // to work. It also eliminates a bunch of ugly "history::".
46 namespace history { namespace
[all...]
H A Dhistory_backend_unittest.cc17 #include "chrome/browser/history/history_backend.h"
18 #include "chrome/browser/history/history_notifications.h"
19 #include "chrome/browser/history/in_memory_database.h"
20 #include "chrome/browser/history/in_memory_history_backend.h"
34 // backend directly. Most of the history backend functions are tested by the
35 // history unit test. Because of the elaborate callbacks involved, this is no
46 namespace history { namespace
81 history::RedirectList redirects;
88 scoped_refptr<history::HistoryAddPageArgs> request(
89 new history
[all...]
H A Dhistory_types.cc5 #include "chrome/browser/history/history_types.h"
12 namespace history { namespace
352 const history::RedirectList& arg_redirects,
417 icon_type(history::INVALID_ICON) {
426 } // namespace history
H A Dhistory_unittest.cc7 // 1. The more complicated style is that the unit test creates a full history
8 // service. This spawns a background thread for the history backend, and
12 // 2. The simpler style is to create a history backend on this thread and
15 // the history backend (since there is a lot of logic) but gets can come
40 #include "chrome/browser/history/download_create_info.h"
41 #include "chrome/browser/history/history.h"
42 #include "chrome/browser/history/history_backend.h"
43 #include "chrome/browser/history/history_database.h"
44 #include "chrome/browser/history/history_notification
60 namespace history { namespace
69 namespace history { namespace
195 QueryURL(HistoryService* history, const GURL& url) argument
220 QueryRedirectsFrom(HistoryService* history, const GURL& url) argument
828 HistoryService* history = new HistoryService(); local
846 HistoryService* history = new HistoryService(); local
[all...]
H A Dtext_database_manager.cc5 #include "chrome/browser/history/text_database_manager.h"
14 #include "chrome/browser/history/history_publisher.h"
15 #include "chrome/browser/history/visit_database.h"
22 namespace history { namespace
558 } // namespace history
H A Dthumbnail_database.cc5 #include "chrome/browser/history/thumbnail_database.h"
19 #include "chrome/browser/history/history_publisher.h"
20 #include "chrome/browser/history/top_sites.h"
21 #include "chrome/browser/history/url_database.h"
32 history::IconMapping* icon_mapping) {
36 static_cast<history::IconType>(statement.ColumnInt(2));
40 namespace history { namespace
761 } // namespace history
H A Dtop_sites_unittest.cc13 #include "chrome/browser/history/history_backend.h"
14 #include "chrome/browser/history/history_database.h"
15 #include "chrome/browser/history/history_marshaling.h"
16 #include "chrome/browser/history/history_notifications.h"
17 #include "chrome/browser/history/history_unittest_base.h"
18 #include "chrome/browser/history/top_sites.h"
19 #include "chrome/browser/history/top_sites_backend.h"
20 #include "chrome/browser/history/top_sites_cache.h"
21 #include "chrome/browser/history/top_sites_database.h"
38 namespace history { namespace
[all...]
/external/chromium_org/chrome/browser/autocomplete/
H A Dsearch_provider_unittest.cc22 #include "chrome/browser/history/history_service.h"
23 #include "chrome/browser/history/history_service_factory.h"
48 // added to history.
50 // is added to history.
99 // Adds a search for |term|, using the engine |t_url| to the history, and
169 // We need both the history service and template url model loaded.
208 // has been processed on the history thread. Block until history processes all
304 HistoryService* history = local
312 history
[all...]
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_provider_backend.cc5 #include "chrome/browser/history/android/android_provider_backend.h"
11 #include "chrome/browser/history/android/android_time.h"
12 #include "chrome/browser/history/android/android_urls_sql_handler.h"
13 #include "chrome/browser/history/android/bookmark_model_sql_handler.h"
14 #include "chrome/browser/history/android/favicon_sql_handler.h"
15 #include "chrome/browser/history/android/urls_sql_handler.h"
16 #include "chrome/browser/history/android/visit_sql_handler.h"
17 #include "chrome/browser/history/history_backend.h"
18 #include "chrome/browser/history/history_database.h"
19 #include "chrome/browser/history/thumbnail_databas
26 namespace history { namespace
[all...]
H A Dandroid_provider_backend_unittest.cc5 #include "chrome/browser/history/android/android_provider_backend.h"
20 #include "chrome/browser/history/android/android_time.h"
21 #include "chrome/browser/history/history_backend.h"
36 namespace history { namespace
81 const history::BriefVisitInfo& info) OVERRIDE {}
228 // Add a bookmark which is not in the history.
240 history_backend->AddVisits(url1, visits1, history::SOURCE_SYNCED);
241 history_backend->AddVisits(url2, visits2, history::SOURCE_SYNCED);
279 // First verify that the bookmark which was not in the history has been added
280 // to history databas
[all...]
/external/chromium_org/chrome/browser/history/
H A Dexpire_history_backend.cc5 #include "chrome/browser/history/expire_history_backend.h"
19 #include "chrome/browser/history/archived_database.h"
20 #include "chrome/browser/history/history_database.h"
21 #include "chrome/browser/history/history_notifications.h"
22 #include "chrome/browser/history/thumbnail_database.h"
27 namespace history { namespace
35 // don't appear in history and the vast majority of them are ads anyway. The
41 // and because these can take up the bulk of your history, we get a lot of
135 // history to expire last iteration, it's likely there is nothing next
140 // delete old history inde
[all...]
H A Dexpire_history_backend_unittest.cc22 #include "chrome/browser/history/archived_database.h"
23 #include "chrome/browser/history/expire_history_backend.h"
24 #include "chrome/browser/history/history_database.h"
25 #include "chrome/browser/history/history_notifications.h"
26 #include "chrome/browser/history/thumbnail_database.h"
27 #include "chrome/browser/history/top_sites.h"
49 // The test must be in the history namespace for the gtest forward declarations
50 // to work. It also eliminates a bunch of ugly "history::".
51 namespace history { namespace
79 // EXPECTs that each URL-specific history thin
[all...]
H A Din_memory_url_index_unittest.cc19 #include "chrome/browser/history/history_backend.h"
20 #include "chrome/browser/history/history_database.h"
21 #include "chrome/browser/history/history_notifications.h"
22 #include "chrome/browser/history/history_service.h"
23 #include "chrome/browser/history/history_service_factory.h"
24 #include "chrome/browser/history/in_memory_url_index.h"
25 #include "chrome/browser/history/in_memory_url_index_types.h"
26 #include "chrome/browser/history/url_index_private_data.h"
39 // The test version of the history url database table ('url') is contained in
50 namespace history { namespace
[all...]
H A Dtop_sites_impl_unittest.cc16 #include "chrome/browser/history/history_backend.h"
17 #include "chrome/browser/history/history_database.h"
18 #include "chrome/browser/history/history_db_task.h"
19 #include "chrome/browser/history/history_marshaling.h"
20 #include "chrome/browser/history/history_notifications.h"
21 #include "chrome/browser/history/history_service_factory.h"
22 #include "chrome/browser/history/history_unittest_base.h"
23 #include "chrome/browser/history/top_sites_backend.h"
24 #include "chrome/browser/history/top_sites_cache.h"
25 #include "chrome/browser/history/top_sites_databas
47 namespace history { namespace
[all...]
H A Dtop_sites_likely_impl_unittest.cc16 #include "chrome/browser/history/history_backend.h"
17 #include "chrome/browser/history/history_database.h"
18 #include "chrome/browser/history/history_db_task.h"
19 #include "chrome/browser/history/history_marshaling.h"
20 #include "chrome/browser/history/history_notifications.h"
21 #include "chrome/browser/history/history_service_factory.h"
22 #include "chrome/browser/history/history_unittest_base.h"
23 #include "chrome/browser/history/top_sites_backend.h"
24 #include "chrome/browser/history/top_sites_cache.h"
25 #include "chrome/browser/history/top_sites_databas
47 namespace history { namespace
[all...]
H A Durl_database.cc5 #include "chrome/browser/history/url_database.h"
19 namespace history { namespace
73 // Convenience to fill a history::URLRow. Must be in sync with the fields in
75 void URLDatabase::FillURLRow(sql::Statement& s, history::URLRow* i) {
114 URLID URLDatabase::GetRowForURL(const GURL& url, history::URLRow* info) {
129 const history::URLRow& info) {
144 URLID URLDatabase::AddURLInternal(const history::URLRow& info,
176 << " to table history.urls.";
225 // the main database are not created here. When deleting all history, they
304 history
[all...]

Completed in 432 milliseconds

<<111213