Searched defs:history (Results 26 - 50 of 211) sorted by relevance

123456789

/external/chromium_org/chrome/browser/precache/
H A Dmost_visited_urls_provider.h13 namespace history { namespace
22 explicit MostVisitedURLsProvider(history::TopSites* top_sites);
31 scoped_refptr<history::TopSites> top_sites_;
/external/chromium_org/components/history/core/browser/
H A Dhistory_client.h16 namespace history { namespace
59 } // namespace history
H A Din_memory_database.h9 #include "components/history/core/browser/url_database.h"
16 namespace history { namespace
49 } // namespace history
H A Dkeyword_search_term.cc5 #include "components/history/core/browser/keyword_search_term.h"
7 namespace history { namespace
18 } // namespace history
H A Dhistory_client.cc5 #include "components/history/core/browser/history_client.h"
7 namespace history { namespace
H A Dhistory_match.h10 #include "components/history/core/browser/url_row.h"
12 namespace history { namespace
14 // Used for intermediate history result operations.
55 } // namespace history
H A Din_memory_database.cc5 #include "components/history/core/browser/in_memory_database.h"
14 namespace history { namespace
69 // Attach to the history database on disk. (We can't ATTACH in the middle of
71 sql::Statement attach(GetDB().GetUniqueStatement("ATTACH ? AS history"));
83 "INSERT INTO urls SELECT * FROM history.urls WHERE typed_count > 0")) {
84 // Unable to get data from the history database. This is OK, the file may
108 "FROM history.urls u JOIN history.keyword_search_terms kst "
110 // Unable to get data from the history database. This is OK, the file may
123 "history
[all...]
H A Dkeyword_search_term.h10 #include "components/history/core/browser/keyword_id.h"
11 #include "components/history/core/browser/url_row.h"
13 namespace history { namespace
36 } // namespace history
/external/chromium_org/components/omnibox/
H A Dautocomplete_provider_client.h9 #include "components/history/core/browser/keyword_id.h"
16 namespace history { namespace
58 virtual history::URLDatabase* InMemoryDatabase() = 0;
61 // |keyword_id| from history.
63 history::KeywordID keyword_id,
/external/doclava/res/assets/templates/assets/
H A Djquery-history.js2 * jQuery history event v0.1
32 var current = $.history.getCurrent();
33 $.event.trigger('history', [current, previousNav]);
38 $.history = {
42 var previous = $.history.getCurrent();
47 $.event.trigger('historyadd', [$.history.getCurrent(), previous]);
62 $.fn.history = function(fn) {
63 $(this).bind('history', fn);
/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/history/android/
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 Dsql_handler.h8 #include "components/history/core/android/android_history_types.h"
10 namespace history { namespace
73 } // 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 Dfavicon_sql_handler.cc5 #include "chrome/browser/history/android/favicon_sql_handler.h"
10 #include "chrome/browser/history/thumbnail_database.h"
14 namespace history { namespace
123 } // namespace history.
/external/chromium_org/chrome/browser/history/
H A Dhistory_database_unittest.cc5 #include "chrome/browser/history/history_database.h"
15 namespace history { namespace
49 } // namespace history
H A Din_memory_history_backend.h6 // It maintains an in-memory cache of a subset of history that is required for
16 // The InMemoryHistoryBackend is created on the history thread and passed to the
18 // notifications from the "regular" history backend and keeps itself in sync.
28 #include "components/history/core/browser/keyword_id.h"
38 namespace history { namespace
53 // Initializes the backend from the history database pointed to by the
57 // Does initialization work when this object is attached to the history
59 // attached history service is under.
103 } // namespace history
H A Dtop_sites_database.h12 #include "components/history/core/browser/history_types.h"
23 namespace history { namespace
108 } // namespace history
H A Durl_utils_unittest.cc5 #include "chrome/browser/history/url_utils.h"
10 namespace history { namespace
131 } // namespace history
H A Dvisit_tracker.h12 #include "components/history/core/browser/history_types.h"
14 namespace history { namespace
16 // Tracks history transitions between pages. The history backend uses this to
48 VisitID visit_id; // Visit ID generated by history.
64 } // namespace history
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_data_type_controller.h18 namespace history { namespace
39 // Invoked on the history thread to set our history backend - must be called
41 void SetBackend(history::HistoryBackend* backend);
58 history::HistoryBackend* backend_;
61 // Helper object to make sure we don't leave tasks running on the history
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
H A DV8HistoryCustom.cpp46 History* history = V8History::toImpl(info.Holder()); local
50 if (!value.IsEmpty() && !history->stateChanged()) {
55 RefPtr<SerializedScriptValue> serialized = history->state();
72 History* history = V8History::toImpl(info.Holder()); local
73 history->stateObjectAdded(historyState.release(), title, url, FrameLoadTypeStandard, exceptionState);
88 History* history = V8History::toImpl(info.Holder()); local
89 history->stateObjectAdded(historyState.release(), title, url, FrameLoadTypeRedirectWithLockedBackForwardList, exceptionState);
/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...]

Completed in 482 milliseconds

123456789