Searched refs:history (Results 76 - 100 of 419) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/
H A Dkeyboard_handler.js116 var history = cvox.History.getInstance();
117 history.enterUserCommand(functionName);
119 history.exitUserCommand(functionName);
/external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
H A Dlast_download_finder.h15 #include "chrome/browser/history/download_row.h"
27 namespace history { namespace
36 // history that participates in safe browsing.
64 // on-the-record profile with history that participates in safe browsing. The
65 // search is initiated if the profile has already loaded history.
82 scoped_ptr<std::vector<history::DownloadRow> > downloads);
107 history::DownloadRow most_recent_row_;
H A Dlast_download_finder.cc16 #include "chrome/browser/history/history_service.h"
17 #include "chrome/browser/history/history_service_factory.h"
34 bool IsMoreInterestingThan(const history::DownloadRow& first,
35 const history::DownloadRow& second) {
49 const history::DownloadRow* FindMostInteresting(
50 const std::vector<history::DownloadRow>& downloads) {
51 const history::DownloadRow* most_recent_row = NULL;
53 const history::DownloadRow& row = downloads[i];
64 void PopulateDetails(const history::DownloadRow& download,
158 // No history servic
[all...]
/external/chromium_org/chrome/browser/ui/webui/options/
H A Doptions_browsertest.cc43 base::ListValue history; local
47 history.Append(new base::StringValue(url.spec()));
50 "OptionsWebUIExtendedTest.verifyHistoryCallback", history);
/external/chromium_org/chrome/browser/autocomplete/
H A Dshortcuts_backend.cc17 #include "chrome/browser/history/history_notifications.h"
18 #include "chrome/browser/history/history_service.h"
19 #include "chrome/browser/history/shortcuts_database.h"
81 db_ = new history::ShortcutsDatabase(
131 UpdateShortcut(history::ShortcutsDatabase::Shortcut(
137 AddShortcut(history::ShortcutsDatabase::Shortcut(
145 history::ShortcutsDatabase::Shortcut::MatchCore
159 return history::ShortcutsDatabase::Shortcut::MatchCore(
189 const history::URLsDeletedDetails* deleted_details =
190 content::Details<const history
[all...]
H A Dhistory_provider.h9 #include "chrome/browser/history/in_memory_url_index_types.h"
16 // This class is a base class for the history autocomplete providers and
38 const history::TermMatches& matches,
H A Dshortcuts_backend_unittest.cc13 #include "chrome/browser/history/shortcuts_database.h"
31 history::ShortcutsDatabase::Shortcut::MatchCore MatchCoreForTesting(
53 bool AddShortcut(const history::ShortcutsDatabase::Shortcut& shortcut);
54 bool UpdateShortcut(const history::ShortcutsDatabase::Shortcut& shortcut);
57 const history::ShortcutsDatabase::ShortcutIDs& deleted_ids);
81 history::ShortcutsDatabase::Shortcut::MatchCore
153 const history::ShortcutsDatabase::Shortcut& shortcut) {
158 const history::ShortcutsDatabase::Shortcut& shortcut) {
167 const history::ShortcutsDatabase::ShortcutIDs& deleted_ids) {
207 history
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/tests/
H A Dupdate_nacl_manifest_test.py169 self.history = []
174 self.history.append((host_os, channel, version, timestamp))
205 def __init__(self, manifest, history, files):
207 self.history = history
217 return self.history
296 self.history = MakeHistory()
304 self.delegate = TestDelegate(self.manifest, self.history.history,
334 def _AddCsvHistory(self, history)
[all...]
/external/chromium_org/chrome/browser/extensions/api/history/
H A Dhistory_api.cc5 #include "chrome/browser/extensions/api/history/history_api.h"
23 #include "chrome/browser/history/history_service.h"
24 #include "chrome/browser/history/history_service_factory.h"
27 #include "chrome/common/extensions/api/history.h"
29 #include "components/history/core/browser/history_types.h"
38 using api::history::HistoryItem;
39 using api::history::VisitItem;
42 typedef std::vector<linked_ptr<api::history::HistoryItem> >
44 typedef std::vector<linked_ptr<api::history::VisitItem> >
47 namespace AddUrl = api::history
[all...]
/external/chromium_org/chrome/browser/history/
H A Dhistory_tab_helper.cc5 #include "chrome/browser/history/history_tab_helper.h"
9 #include "chrome/browser/history/history_service.h"
10 #include "chrome/browser/history/history_service_factory.h"
41 const history::HistoryAddPageArgs& add_page_args) {
54 history::HistoryAddPageArgs
60 history::HistoryAddPageArgs add_page_args(
63 history::SOURCE_BROWSED, did_replace_entry);
66 // Hack on the "virtual" URL so that it will appear in history. For some
68 // the page is actually navigated. We want the user to see in history what
89 // Update history
[all...]
/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_typed_urls_sync_test.cc11 #include "components/history/core/browser/history_types.h"
20 const std::string kSanityHistoryUrl = "http://www.sanity-history.google.com";
33 history::URLRows urls = GetTypedUrlsFromClient(0);
51 history::URLRows urls = GetTypedUrlsFromClient(0);
71 history::URLRows urls = GetTypedUrlsFromClient(0);
98 history::URLRows urls = GetTypedUrlsFromClient(0);
104 history::SOURCE_BROWSED);
/external/chromium_org/chrome/browser/ui/webui/ntp/
H A Dmost_visited_handler.cc24 #include "chrome/browser/history/top_sites.h"
37 #include "components/history/core/browser/page_usage_data.h"
86 history::TopSites* ts = profile->GetTopSites();
96 content::Source<history::TopSites>(ts));
141 history::TopSites* ts = profile->GetTopSites();
154 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
180 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
189 history::TopSites* ts = Profile::FromWebUI(web_ui())->GetTopSites();
214 const history::MostVisitedURLList& data) {
217 history
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/framehost/
H A DNavigationControllerImpl.java161 NavigationHistory history = new NavigationHistory();
163 mNativeNavigationControllerAndroid, history);
164 history.setCurrentEntryIndex(currentIndex);
165 return history;
171 NavigationHistory history = new NavigationHistory();
173 history, isForward, itemLimit);
174 return history;
214 private static void addToNavigationHistory(Object history, Object navigationEntry) { argument
215 ((NavigationHistory) history).addEntry((NavigationEntry) navigationEntry);
257 Object history);
256 nativeGetNavigationHistory(long nativeNavigationControllerAndroid, Object history) argument
258 nativeGetDirectedNavigationHistory(long nativeNavigationControllerAndroid, NavigationHistory history, boolean isForward, int itemLimit) argument
[all...]
/external/libedit/examples/
H A Dtc1.c146 hist = history_init(); /* Init the builtin history */
148 history(hist, &ev, H_SETSIZE, 100);
159 /* Tell editline to use this history interface */
160 el_set(el, EL_HIST, history, hist);
170 * of previous and next history.
220 * moved around in history.
222 if (history(hist, &ev, H_SET, lastevent) == -1)
224 history(hist, &ev, H_ADD , buf);
226 history(hist, &ev, H_ENTER, buf);
231 history(his
[all...]
/external/chromium_org/chrome/browser/resources/uber/
H A Duber_utils.js102 window.history.replaceState(state, '', path);
142 * Updates the page's history state. If the page is embedded in a child,
143 * forward the information to the parent for it to manage history for us. This
144 * is a replacement of history.replaceState and history.pushState.
152 window.history.replaceState :
153 window.history.pushState;
158 historyFunction = window.history.replaceState;
162 historyFunction.call(window.history, state, '', '/' + path);
177 * Pushes new history stat
[all...]
/external/chromium_org/chrome/browser/ui/sync/
H A Dprofile_signin_confirmation_helper_unittest.cc23 #include "chrome/browser/history/history_service.h"
24 #include "chrome/browser/history/history_service_factory.h"
234 HistoryService* history = HistoryServiceFactory::GetForProfile( local
237 ASSERT_TRUE(history);
240 // history items.
244 history->AddPage(
246 GURL(), history::RedirectList(), ui::PAGE_TRANSITION_LINK,
247 history::SOURCE_BROWSED, false);
259 HistoryService* history = HistoryServiceFactory::GetForProfile( local
262 ASSERT_TRUE(history);
[all...]
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DSaveRestoreStateTest.java102 NavigationHistory history = getNavigationHistoryOnUiThread(vars);
103 assertEquals(NUM_NAVIGATIONS, history.getEntryCount());
104 assertEquals(NUM_NAVIGATIONS - 1, history.getCurrentEntryIndex());
110 assertEquals(mUrls[i], history.getEntryAtIndex(i).getOriginalUrl());
111 assertEquals(mUrls[i], history.getEntryAtIndex(i).getUrl());
112 assertEquals(TITLES[i], history.getEntryAtIndex(i).getTitle());
/external/chromium_org/chrome/browser/search_engines/
H A Dchrome_template_url_service_client.cc8 #include "chrome/browser/history/history_notifications.h"
9 #include "chrome/browser/history/history_service.h"
10 #include "chrome/browser/history/history_service_factory.h"
23 // TODO(sky): bug 1166191. The keywords should be moved into the history
24 // db, which will mean we no longer need this notification and the history
63 history::RedirectList(),
65 history::SOURCE_BROWSED, false);
89 content::Details<history::URLVisitedDetails> history_details(details);
/external/chromium_org/chrome/browser/sync/glue/
H A Dbookmark_data_type_controller.cc10 #include "chrome/browser/history/history_service.h"
11 #include "chrome/browser/history/history_service_factory.h"
119 // Check that both the bookmark model and the history service (for favicons)
125 HistoryService* history = HistoryServiceFactory::GetForProfile(
127 if (!history || !history->BackendLoaded())
H A Dtyped_url_change_processor.cc12 #include "chrome/browser/history/history_backend.h"
13 #include "chrome/browser/history/history_notifications.h"
41 history::HistoryBackend* history_backend,
76 content::Details<history::URLsModifiedDetails>(details).ptr());
79 content::Details<history::URLsDeletedDetails>(details).ptr());
83 content::Details<history::URLVisitedDetails>(details).ptr());
90 history::URLsModifiedDetails* details) {
93 for (history::URLRows::iterator url = details->changed_urls.begin();
104 history::URLRow url, syncer::WriteTransaction* trans) {
107 history
[all...]
/external/chromium_org/chrome/browser/importer/
H A Dprofile_writer_unittest.cc12 #include "chrome/browser/history/history_service.h"
13 #include "chrome/browser/history/history_service_factory.h"
21 #include "components/history/core/browser/history_types.h"
52 // Helper function to create history entries.
53 history::URLRow MakeURLRow(const char* url,
58 history::URLRow row(GURL(url), 0);
67 // Create test history entries to be added to ProfileWriter to
68 // simulate history importing.
70 history::URLRow row1(
73 history
[all...]
/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...]
/external/chromium_org/chrome/browser/history/android/
H A Dandroid_urls_database.h8 #include "components/history/core/android/android_history_types.h"
10 namespace history { namespace
71 } // namespace history
H A Dfavicon_sql_handler.h8 #include "chrome/browser/history/android/sql_handler.h"
10 namespace history { namespace
36 } // namespace history.
H A Dsql_handler.cc5 #include "chrome/browser/history/android/sql_handler.h"
7 namespace history { namespace
38 } // namespace history.

Completed in 458 milliseconds

1234567891011>>