/external/chromium/chrome/common/extensions/docs/static/ |
experimental.history.html | 1 <div id="pageData-name" class="pageData">experimental.chrome.history</div> 4 The <code>history</code> API is no longer experimental; 10 <a href="history.html">chrome.history</a>
|
/external/webkit/LayoutTests/storage/ |
hash-change-with-xhr-expected.txt | 1 Changing the hash to create history entries.
|
/external/webkit/Source/WebCore/manual-tests/ |
back.html | 1 <input type="button" onclick="history.back()" value="Go Back"
|
/external/webkit/Source/WebCore/manual-tests/resources/ |
will-go-back.html | 4 history.back(); 9 If you can go back using the history : test has succeed.
|
alert-and-go-back.html | 2 history.back();
|
redraw-page-cache-visited-links-2.html | 6 // // Uses window.history hack; see http://bugs.webkit.org/show_bug.cgi?id=7135 7 // window.history[99999] = 1; 8 // window.history.back();
|
/external/zlib/contrib/minizip/ |
MiniZip64_Changes.txt | 5 - **TODO - Add history**
|
/external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/ |
manifest.json | 2 "name": "Typed URL History", 4 "description": "Reads your history, and shows the top ten pages you go to by typing the URL.", 5 "permissions": ["history", "tabs"],
|
/external/webkit/Source/WebKit/efl/ewk/ |
ewk_history.h | 36 * @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...] |
ewk_history.cpp | 40 #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 which history instance to modify 678 Ewk_History* history; local [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider.h | 13 #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::TermMatches& matches [all...] |
/external/bluetooth/glib/build/ |
README | 2 are left. See the separate "build" module in GNOME SVN for history.
|
/external/webkit/Source/WebCore/manual-tests/redirectHistory/ |
redir-3.html | 5 window.setTimeout("window.history.back()", 1000);
|
/external/chromium/chrome/browser/extensions/ |
extension_history_api.h | 14 #include "chrome/browser/history/history.h" 15 #include "chrome/browser/history/history_notifications.h" 18 // Observes History service and routes the notifications as events to the 40 const history::URLVisitedDetails* details); 43 const history::URLsDeletedDetails* details); 49 // Used for tracking registrations to history service notifications. 60 // Base class for history function APIs. 70 // Base class for history funciton APIs which require async interaction with 101 DECLARE_EXTENSION_FUNCTION_NAME("history.getVisits") [all...] |
/external/chromium/chrome/browser/history/ |
in_memory_database.cc | 5 #include "chrome/browser/history/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")); 73 NOTREACHED() << "Unable to attach to history database."; 89 "INSERT INTO urls SELECT * FROM history.urls WHERE typed_count > 0")) { 90 // Unable to get data from the history database. This is OK, the file may 94 UMA_HISTOGRAM_MEDIUM_TIMES("History.InMemoryDBPopulate", 96 UMA_HISTOGRAM_COUNTS("History.InMemoryDBItemCount", db_.GetLastChangeCount()); 103 "FROM history.urls u JOIN history.keyword_search_terms kst [all...] |
history_unittest.cc | 5 // History unit tests come in two flavors: 7 // 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 60 namespace history { namespace 69 namespace history { namespace 828 HistoryService* history = new HistoryService(); local 846 HistoryService* history = new HistoryService(); local [all...] |
history_notifications.cc | 5 #include "chrome/browser/history/history_notifications.h" 7 namespace history { namespace 35 } // namespace history
|
history_browsertest.cc | 8 #include "chrome/browser/history/history.h" 29 // and history backend thread because the history subsystem posts tasks back 34 // A task to be scheduled on the history backend thread. 35 // Notifies the main thread after all history backend thread tasks have run. 41 virtual bool RunOnDBThread(history::HistoryBackend* backend, 42 history::HistoryDatabase* db) { 54 // Enumerates all history contents on the backend thread. 57 explicit HistoryEnumerator(HistoryService* history) { 116 HistoryService* history = GetHistoryService(); local [all...] |
/external/chromium/chrome/browser/sync/ |
profile_sync_service_typed_url_unittest.cc | 13 #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::URLID id, const history::URLRow& url)) [all...] |
/external/chromium/chrome/browser/sync/glue/ |
typed_url_model_associator_unittest.cc | 8 #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::URLRow new_row1(GURL("http://pie.com/")) [all...] |
/external/chromium/chrome/common/extensions/docs/examples/api/idle/ |
idle_simple.zip | |
/external/webkit/Source/WebCore/page/ |
History.cpp | 27 #include "History.h" 40 History::History(Frame* frame) 45 Frame* History::frame() const 50 void History::disconnectFrame() 55 unsigned History::length() const 64 void History::back() 69 void History::back(ScriptExecutionContext* context) 74 void History::forward() 79 void History::forward(ScriptExecutionContext* context [all...] |
/external/chromium/chrome/browser/ui/webui/ |
history2_ui.h | 12 #include "chrome/browser/history/history.h" 19 // Temporary fork for development of new history UI. 40 // The handler for Javascript messages related to the "history" view. 63 // Callback from the history system when the history list is available. 65 history::QueryResults* results); 67 // Callback from the history system when visits were deleted. 76 history::QueryOptions CreateMonthQueryOptions(int month); 81 // Our consumer for search requests to the history service [all...] |
/build/tools/droiddoc/templates-pdk/assets/ |
jquery-history.js | 2 * 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);
|
/build/tools/droiddoc/templates-sdk/assets/ |
jquery-history.js | 2 * 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);
|