Searched refs:history (Results 151 - 175 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/sync/
H A Dprofile_sync_components_factory.h46 namespace history { namespace
48 } // namespace history
110 history::HistoryBackend* history_backend,
/external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
H A DtypedUrls.js36 // Search history to find up to ten links that a user has typed in,
39 // To look for history items visited in the last week,
44 // Track the number of callbacks from chrome.history.getVisits()
48 chrome.history.search({
49 'text': '', // Return every history item....
53 // For each history item, get details on all visits.
63 chrome.history.getVisits({url: url}, processVisitsWithUrl(url));
76 // Callback for chrome.history.getVisits(). Counts the number of
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dspan.cc46 span->history[span->nexthistory] = op;
49 if (span->nexthistory == sizeof(span->history)) span->nexthistory = 0;
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dspan.cc46 span->history[span->nexthistory] = op;
49 if (span->nexthistory == sizeof(span->history)) span->nexthistory = 0;
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_browsertest.cc10 #include "chrome/browser/history/history_service_factory.h"
130 // Acts like a synchronous call to history's QueryHistory. Modified from
134 const history::QueryOptions& options,
135 history::QueryResults* results) {
149 void QueryHistoryComplete(history::QueryResults* new_results,
151 history::QueryResults* results) {
226 // Tests whether a visit attempt adds a special history entry.
270 // Query the history entry.
273 history::QueryOptions options;
274 history
[all...]
H A Dsupervised_user_navigation_observer.cc11 #include "chrome/browser/history/history_service.h"
12 #include "chrome/browser/history/history_service_factory.h"
22 #include "components/history/core/browser/history_types.h"
228 // Create a history entry for the attempt and mark it as such.
229 history::HistoryAddPageArgs add_page_args(
231 url, history::RedirectList(),
232 ui::PAGE_TRANSITION_BLOCKED, history::SOURCE_BROWSED,
235 // Add the entry to the history database.
241 // |history_service| is null if saving history is disabled.
/external/chromium_org/chrome/browser/predictors/
H A Dautocomplete_action_predictor_unittest.cc15 #include "chrome/browser/history/history_service.h"
16 #include "chrome/browser/history/history_service_factory.h"
20 #include "components/history/core/browser/in_memory_database.h"
21 #include "components/history/core/browser/url_database.h"
129 history::URLID AddRowToHistory(const TestUrlInfo& test_row) {
130 HistoryService* history = local
133 CHECK(history);
134 history::URLDatabase* url_db = history->InMemoryDatabase();
141 history
[all...]
/external/chromium_org/chrome/browser/android/provider/
H A Dchrome_browser_provider.cc29 #include "chrome/browser/history/android/sqlite_cursor.h"
30 #include "chrome/browser/history/top_sites.h"
36 #include "components/history/core/android/android_history_types.h"
707 // Base class for all asynchronous blocking tasks that use the Android history
729 history::URLID Run(const history::HistoryAndBookmarkRow& row) {
741 void OnBookmarkInserted(history::URLID id) {
748 history::URLID result_;
760 history::AndroidStatement* Run(
761 const std::vector<history
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
H A Dchrome_extension_externs.js707 chrome.history = {};
713 chrome.history.addUrl = function(details) {};
719 chrome.history.deleteAll = function(callback) {};
727 chrome.history.deleteRange = function(range, callback) {};
733 chrome.history.deleteUrl = function(details) {};
741 chrome.history.getVisits = function(details, callback) {};
751 chrome.history.search = function(query, callback) {};
755 chrome.history.onVisitRemoved;
759 chrome.history.onVisited;
/external/chromium_org/chrome/browser/search/
H A Dinstant_service.cc8 #include "chrome/browser/history/top_sites.h"
93 history::TopSites* top_sites = profile_->GetTopSites();
97 content::Source<history::TopSites>(top_sites));
162 history::TopSites* top_sites = profile_->GetTopSites();
170 history::TopSites* top_sites = profile_->GetTopSites();
178 history::TopSites* top_sites = profile_->GetTopSites();
223 history::TopSites* top_sites = profile_->GetTopSites();
265 const history::MostVisitedURLList& data) {
266 history::MostVisitedURLList reordered_data(data);
269 const history
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DNavigationHistoryTest.java22 * Navigation history tests.
106 NavigationHistory history = getNavigationHistory(mAwContents);
107 assertEquals(0, history.getEntryCount());
115 history = getNavigationHistory(mAwContents);
116 checkHistoryItem(history.getEntryAtIndex(0),
122 assertEquals(0, history.getCurrentEntryIndex());
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dhistory.js7 * @fileoverview Stores the history of a ChromeVox session.
16 * A history event is stored in the cvox.History object and contains all the
351 var history = cvox.History.getInstance();
352 history.addBigTextBox_();
353 window.console.log(history.dumpJsOutput_());
377 * Send the history to Google Feedback.
380 var history = cvox.History.getInstance();
381 var output = history.events_.map(function(e) {
/external/skia/experimental/webtry/res/js/
H A Dwebtry.js14 * If we are on a workspace page we also look for a 'history'
17 * populate the history list.
174 * Called when an image in the workspace history is clicked.
210 * Add the given try image to the history of a workspace.
246 // Add the image to the history if we are on a workspace page.
250 window.history.pushState(null, null, '/c/' + body.hash);
288 // Add the images to the history if we are on a workspace page.
289 if (tryHistory && history) {
290 for (var i=0; i<history.length; i++) {
291 addToHistory(history[
[all...]
/external/chromium_org/chrome/browser/ui/webui/
H A Dhistory_ui.cc25 #include "chrome/browser/history/history_notifications.h"
26 #include "chrome/browser/history/history_service_factory.h"
27 #include "chrome/browser/history/web_history_service.h"
28 #include "chrome/browser/history/web_history_service_factory.h"
42 #include "components/history/core/browser/history_types.h"
81 static const char kHistoryJsFile[] = "history.js";
108 // Identifiers for the type of device from which a history entry originated.
133 source->AddLocalizedString("history", IDS_HISTORY_BROWSERESULTS);
237 // It must exist in order for remote history entries to be available.
256 NOTREACHED() << "Got a remote history entr
[all...]
H A Dfavicon_source.cc13 #include "chrome/browser/history/top_sites.h"
100 for (size_t i = 0; i < arraysize(history::kPrepopulatedPages); i++) {
102 l10n_util::GetStringUTF8(history::kPrepopulatedPages[i].url_id)) {
107 history::kPrepopulatedPages[i].favicon_id,
/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
H A DNavigationPopupTest.java103 NavigationHistory history = client.mHistory;
104 for (int i = 0; i < history.getEntryCount(); i++) {
105 if (history.getEntryAtIndex(i).getFavicon() == null) return false;
/external/chromium_org/chrome/browser/download/
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/ui/webui/ntp/
H A Dfavicon_webui_handler.cc16 #include "chrome/browser/history/top_sites.h"
100 for (size_t i = 0; i < arraysize(history::kPrepopulatedPages); i++) {
102 l10n_util::GetStringUTF8(history::kPrepopulatedPages[i].url_id)) {
105 SkColorToCss(history::kPrepopulatedPages[i].color));
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_controller_android.cc56 jobject history,
61 history,
222 jobject history) {
227 env, history, navigation_controller_->GetEntryAtIndex(i), i);
236 jobject history,
250 env, history, navigation_controller_->GetEntryAtIndex(i), i);
55 AddNavigationEntryToHistory(JNIEnv* env, jobject history, content::NavigationEntry* entry, int index) argument
220 GetNavigationHistory(JNIEnv* env, jobject obj, jobject history) argument
233 GetDirectedNavigationHistory( JNIEnv* env, jobject obj, jobject history, jboolean is_forward, jint max_entries) argument
H A Dnavigation_controller_android.h71 int GetNavigationHistory(JNIEnv* env, jobject obj, jobject history);
74 jobject history,
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/workspace/
H A DUISourceCode.js55 this.history = [];
336 var lastRevision = this.history.length ? this.history[this.history.length - 1] : null;
339 this.history.push(revision);
442 this.history = [];
/external/llvm/lib/LineEditor/
H A DLineEditor.cpp25 sys::path::append(Path, "." + ProgName + "-history");
211 ::el_set(Data->EL, EL_HIST, history, Data->Hist);
224 ::history(Data->Hist, &HE, H_SETSIZE, 800);
225 ::history(Data->Hist, &HE, H_SETUNIQUE, 1);
240 ::history(Data->Hist, &HE, H_SAVE, HistoryPath.c_str());
247 ::history(Data->Hist, &HE, H_LOAD, HistoryPath.c_str());
267 ::history(Data->Hist, &HE, H_ENTER, Line);
/external/chromium_org/chrome/browser/autocomplete/
H A Dzero_suggest_provider.h15 #include "components/history/core/browser/history_types.h"
118 void OnMostVisitedUrlsAvailable(const history::MostVisitedURLList& urls);
158 history::MostVisitedURLList most_visited_urls_;
/external/chromium_org/chrome/browser/history/
H A Dhistory_backend_android.cc5 #include "chrome/browser/history/history_backend.h"
7 #include "chrome/browser/history/android/android_provider_backend.h"
9 namespace history { namespace
67 int HistoryBackend::MoveStatement(history::AndroidStatement* statement,
135 } // namespace history
H A Din_memory_url_index_types.h13 #include "components/history/core/browser/history_types.h"
16 namespace history { namespace
137 // A map from word (by word_id) to history items containing that word.
138 typedef history::URLID HistoryID;
161 // A map from history_id to the history's URL and title.
177 } // namespace history

Completed in 457 milliseconds

1234567891011>>