Searched refs:history (Results 1 - 25 of 317) sorted by relevance

1234567891011>>

/external/chromium/chrome/browser/autocomplete/
H A Dhistory_url_provider.h18 namespace history { namespace
24 } // namespace history
26 // How history autocomplete works
57 // quickly and hit enter, no matter how loaded the main history database is.
64 // The second autocomplete pass uses the full history database, which must be
65 // queried on the history thread. Start() asks the history service schedule to
66 // callback on the history thread with a pointer to the main database. When we
81 // on the history thread, because we should only do that when we can safely
84 // Used to communicate autocomplete parameters between threads via the history
[all...]
H A Dhistory_contents_provider.h10 #include "chrome/browser/history/history.h"
27 // As necessary asks the history service for the relevant results. When
37 history::QueryResults* results);
44 AutocompleteMatch ResultToMatch(const history::URLResult& result,
49 void ClassifyDescription(const history::URLResult& result,
54 int CalculateRelevance(const history::URLResult& result);
81 history::QueryResults results_;
H A Dhistory_quick_provider.h13 #include "chrome/browser/history/history_types.h"
14 #include "chrome/browser/history/in_memory_url_index.h"
19 namespace history { namespace
21 } // namespace history
24 // the history system) which quickly (and synchronously) provides matching
26 // history.
48 const history::ScoredHistoryMatch& history_match,
62 // Returns the index that should be used for history lookups.
63 history::InMemoryURLIndex* GetIndex();
68 const history
[all...]
H A Dhistory_contents_provider.cc14 #include "chrome/browser/history/query_parser.h"
28 // When processing the results from the history query, this structure points to
32 MatchReference(const history::URLResult* result, int relevance)
37 const history::URLResult* result;
52 using history::HistoryDatabase;
72 // The history service or bookmark bar model must exist.
113 // history query.
124 history::QueryResults empty_results;
135 HistoryService* history = local
137 if (history) {
[all...]
H A Dhistory_provider_util.cc7 namespace history { namespace
30 } // namespace history
/external/webkit/Source/WebKit/efl/ewk/
H A Dewk_history.h36 * @brief The history (back-forward list) associated with a given ewk_view.
38 * Changing the history affects immediately the view, changing the
41 * When ewk_view is navigated or uris are set, history automatically
42 * updates. That's why no direct access to history structure is
54 EAPI Eina_Bool ewk_history_forward(Ewk_History *history);
55 EAPI Eina_Bool ewk_history_back(Ewk_History *history);
57 EAPI Eina_Bool ewk_history_history_item_add(Ewk_History *history, const Ewk_History_Item *item);
58 EAPI Eina_Bool ewk_history_history_item_set(Ewk_History *history, const Ewk_History_Item *item);
59 EAPI Ewk_History_Item *ewk_history_history_item_back_get(const Ewk_History *history);
60 EAPI Ewk_History_Item *ewk_history_history_item_current_get(const Ewk_History *history);
[all...]
H A Dewk_history.cpp40 #define EWK_HISTORY_CORE_GET_OR_RETURN(history, core_, ...) \
41 if (!(history)) { \
42 CRITICAL("history is NULL."); \
45 if (!(history)->core) { \
46 CRITICAL("history->core is NULL."); \
49 if (!(history)->core->enabled()) { \
50 ERR("history->core is disabled!."); \
53 WebCore::BackForwardListImpl *core_ = (history)->core
114 * Go forward in history one item, if possible.
116 * @param history whic
120 ewk_history_forward(Ewk_History* history) argument
136 ewk_history_back(Ewk_History* history) argument
157 ewk_history_history_item_add(Ewk_History* history, const Ewk_History_Item* item) argument
177 ewk_history_history_item_set(Ewk_History* history, const Ewk_History_Item* item) argument
193 ewk_history_history_item_back_get(const Ewk_History* history) argument
207 ewk_history_history_item_current_get(const Ewk_History* history) argument
221 ewk_history_history_item_forward_get(const Ewk_History* history) argument
236 ewk_history_history_item_nth_get(const Ewk_History* history, int index) argument
254 ewk_history_history_item_contains(const Ewk_History* history, const Ewk_History_Item* item) argument
274 ewk_history_forward_list_get(const Ewk_History* history) argument
298 ewk_history_forward_list_get_with_limit(const Ewk_History* history, int limit) argument
315 ewk_history_forward_list_length(const Ewk_History* history) argument
334 ewk_history_back_list_get(const Ewk_History* history) argument
358 ewk_history_back_list_get_with_limit(const Ewk_History* history, int limit) argument
375 ewk_history_back_list_length(const Ewk_History* history) argument
388 ewk_history_limit_get(Ewk_History* history) argument
402 ewk_history_limit_set(const Ewk_History* history, int limit) argument
678 Ewk_History* history; local
702 ewk_history_free(Ewk_History* history) argument
[all...]
/external/chromium/chrome/browser/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 Dhistory_publisher_none.cc9 #include "chrome/browser/history/history_publisher.h"
13 namespace history { namespace
34 } // namespace history
H A Dhistory.cc5 // The history system runs on a background thread so that potentially slow
25 #include "chrome/browser/history/history.h"
35 #include "chrome/browser/history/download_create_info.h"
36 #include "chrome/browser/history/history_backend.h"
37 #include "chrome/browser/history/history_notifications.h"
38 #include "chrome/browser/history/history_types.h"
39 #include "chrome/browser/history/in_memory_database.h"
40 #include "chrome/browser/history/in_memory_history_backend.h"
41 #include "chrome/browser/history/top_site
[all...]
H A Dhistory_marshaling.h5 // Data structures for communication between the history service on the main
6 // thread and the backend on the history thread.
14 #include "chrome/browser/history/history.h"
15 #include "chrome/browser/history/page_usage_data.h"
18 namespace history { namespace
31 history::RedirectList>
39 history::RedirectMap> >
43 history::MostVisitedURLList>
92 } // namespace history
[all...]
H A Dhistory_unittest_base.h11 namespace history { namespace
12 // A base class for a history unit test. It provides the common test methods.
31 } // namespace history
H A Din_memory_database.h11 #include "chrome/browser/history/url_database.h"
15 namespace history { namespace
48 } // namespace history
/external/chromium/chrome/browser/sync/
H A Dprofile_sync_service_typed_url_unittest.cc13 #include "chrome/browser/history/history_backend.h"
14 #include "chrome/browser/history/history_notifications.h"
15 #include "chrome/browser/history/history_types.h"
47 using history::HistoryBackend;
48 using history::URLID;
49 using history::URLRow;
78 MOCK_METHOD1(GetAllTypedURLs, bool(std::vector<history::URLRow>* entries));
79 MOCK_METHOD2(GetVisitsForURL, bool(history::URLID id,
80 history::VisitVector* visits));
81 MOCK_METHOD2(UpdateURL, bool(history
[all...]
/external/chromium/chrome/browser/sync/glue/
H A Dtyped_url_model_associator_unittest.cc8 #include "chrome/browser/history/history_types.h"
18 static history::URLRow MakeTypedUrlRow(const char* url,
23 history::VisitVector* visits) {
25 history::URLRow history_url(gurl);
31 visits->push_back(history::VisitRow(
51 static bool URLsEqual(history::URLRow& lhs, history::URLRow& rhs) {
61 history::VisitVector visits1;
62 history::URLRow row1(MakeTypedUrlRow("http://pie.com/", "pie",
67 history
[all...]
H A Dtyped_url_change_processor.h22 namespace history { namespace
35 // This class is responsible for taking changes from the history backend and
42 history::HistoryBackend* history_backend,
66 void HandleURLsModified(history::URLsModifiedDetails* details);
67 void HandleURLsDeleted(history::URLsDeletedDetails* details);
68 void HandleURLsVisited(history::URLVisitedDetails* details);
76 history::HistoryBackend* history_backend_;
H A Dtyped_url_model_associator.h16 #include "chrome/browser/history/history_types.h"
24 namespace history { namespace
50 typedef std::vector<history::URLRow> TypedUrlVector;
51 typedef std::vector<std::pair<history::URLID, history::URLRow> >
58 history::HistoryBackend* history_backend);
105 const history::VisitVector* deleted_visits);
116 const history::URLRow& url,
117 history::VisitVector* visits,
118 history
[all...]
/external/chromium/testing/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon3152
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history
[all...]
/external/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon5628
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history
[all...]
/external/protobuf/gtest/test/
H A Dgtest-linked_ptr_test.cc44 Message* history = NULL; member in namespace:__anon10027
49 A(): mynum(num++) { *history << "A" << mynum << " ctor\n"; }
50 virtual ~A() { *history << "A" << mynum << " dtor\n"; }
51 virtual void Use() { *history << "A" << mynum << " use\n"; }
59 B() { *history << "B" << mynum << " ctor\n"; }
60 ~B() { *history << "B" << mynum << " dtor\n"; }
61 virtual void Use() { *history << "B" << mynum << " use\n"; }
68 history = new Message;
72 delete history;
73 history
[all...]
/external/chromium/chrome/browser/
H A Dfavicon_helper.h31 // requests the favicon from the history database. At this point
35 // history regardless of whether the NavigationEntry has a favicon.
38 // first depends upon who is faster): notification from the history
42 // . If the history db has a valid up to date favicon for the page, we update
51 // the favicon url and the callback from history. We wait to ensure we
57 // . Otherwise we ask the history database to update the mapping from
93 history::IconType icon_type,
112 // Ask the favicon from history
116 history::IconType icon_type,
122 history
[all...]
H A Dfavicon_service.h14 #include "chrome/browser/history/history_types.h"
21 // The favicon service provides methods to access favicons. It calls the history
42 history::FaviconData>::Type // the type of favicon
50 history::IconType icon_type,
61 history::IconType icon_type,
85 const std::vector<history::ImportedFaviconUsage>& favicon_usage);
91 history::IconType icon_type);
100 // Helper to forward an empty result if we cannot get the history service.
/external/chromium/base/memory/
H A Dlinked_ptr_unittest.cc15 std::string history; member in namespace:__anon1536
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 ~B() { history += base::StringPrintf("B%d dtor\n", mynum); }
29 virtual void Use() { history += base::StringPrintf("B%d use\n", mynum); }
86 ASSERT_EQ(history,
/external/chromium/chrome/browser/ui/webui/
H A Dthumbnail_source.h18 namespace history { namespace
23 // thumbnails and the history/top-sites backend that serves these.
49 scoped_refptr<history::TopSites> top_sites_;
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HistoryCustom.cpp63 History* history = V8History::toNative(args.Holder()); local
64 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectPush, ec);
87 History* history = V8History::toNative(args.Holder()); local
88 history->stateObjectAdded(historyState.release(), title, url, History::StateObjectReplace, ec);
95 History* history = V8History::toNative(host); local
96 return V8BindingSecurity::canAccessFrame(V8BindingState::Only(), history->frame(), false);
102 History* history = V8History::toNative(host); local
103 return V8BindingSecurity::canAccessFrame(V8BindingState::Only(), history->frame(), false);

Completed in 824 milliseconds

1234567891011>>