/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/omnibox/ |
OmniboxPrerender.java | 5 package org.chromium.chrome.browser.omnibox; 12 * into the Omnibox. 31 * the omnibox (e.g. when navigating away, closing the keyboard or changing tabs) 51 * Potentailly invokes a pre-render or pre-connect given the url typed into the omnibox and 52 * a corresponding autocomplete result. This should be invoked everytime the omnibox changes 55 * @param url url in the omnibox.
|
/external/chromium_org/chrome/browser/android/omnibox/ |
omnibox_prerender.cc | 32 OmniboxPrerender* omnibox = new OmniboxPrerender(env, obj); local 33 return reinterpret_cast<intptr_t>(omnibox);
|
/external/chromium_org/chrome/browser/ui/search/ |
instant_test_utils.h | 18 #include "chrome/browser/ui/omnibox/location_bar.h" 58 OmniboxView* omnibox() { function in class:InstantTestBase 97 // Returns the omnibox's inline autocompletion (shown in blue highlight).
|
/external/chromium_org/chrome/browser/renderer_host/ |
render_process_host_chrome_browsertest.cc | 96 // Change the first tab to be the omnibox page (TYPE_WEBUI). 97 GURL omnibox(chrome::kChromeUIOmniboxURL); 98 ui_test_utils::NavigateToURL(browser(), omnibox); local 102 EXPECT_EQ(omnibox, tab1->GetURL()); 135 // Create another TYPE_WEBUI tab. It should share the process with omnibox. 190 GURL omnibox(chrome::kChromeUIOmniboxURL); 191 ui_test_utils::NavigateToURL(browser(), omnibox); local 216 // Create another omnibox tab. It should share the process with the other 219 browser(), omnibox, NEW_FOREGROUND_TAB, local 225 // Create another omnibox tab. It should share the process with the othe 228 browser(), omnibox, NEW_FOREGROUND_TAB, local 248 ui_test_utils::NavigateToURL(browser(), omnibox); local [all...] |
/external/chromium_org/chrome/test/base/ |
ui_test_utils.cc | 50 #include "chrome/browser/ui/omnibox/location_bar.h" 51 #include "chrome/browser/ui/omnibox/omnibox_view.h" 391 OmniboxView* omnibox = location_bar->GetOmniboxView(); local 392 omnibox->model()->OnSetFocus(false); 393 omnibox->SetUserText(ASCIIToUTF16(input)); 395 while (!omnibox->model()->autocomplete_controller()->done()) {
|