HomeSort by relevance Sort by last modified time
    Searched refs:omnibox (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api.cc 5 #include "chrome/browser/extensions/api/omnibox/omnibox_api.h"
22 #include "chrome/common/extensions/api/omnibox.h"
23 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h"
32 namespace omnibox = api::omnibox;
33 namespace SendSuggestions = omnibox::SendSuggestions;
34 namespace SetDefaultSuggestion = omnibox::SetDefaultSuggestion;
43 // Pref key for omnibox.setDefaultSuggestion.
57 scoped_ptr<omnibox::SuggestResult> GetOmniboxDefaultSuggestion(
63 scoped_ptr<omnibox::SuggestResult> suggestion
    [all...]
omnibox_unittest.cc 6 #include "chrome/browser/extensions/api/omnibox/omnibox_api.h"
7 #include "chrome/common/extensions/api/omnibox.h"
14 namespace omnibox = api::omnibox;
15 namespace SendSuggestions = omnibox::SendSuggestions;
16 namespace SetDefaultSuggestion = omnibox::SetDefaultSuggestion;
omnibox_api.h 19 #include "chrome/common/extensions/api/omnibox.h"
42 // Event router class for events related to the omnibox API.
45 // The user has just typed the omnibox keyword. This is sent exactly once in
50 // The user has changed what is typed into the omnibox while in an extension
58 // The user has accepted the omnibox input.
65 // The user has cleared the keyword, or closed the omnibox popup. This is
76 DECLARE_EXTENSION_FUNCTION("omnibox.sendSuggestions", OMNIBOX_SENDSUGGESTIONS)
105 // Returns the icon to display in the omnibox for the given extension.
108 // Returns the icon to display in the omnibox popup window for the given
135 // Keeps track of favicon-sized omnibox icons for extensions
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
search_tab_helper.cc 27 #include "chrome/browser/ui/omnibox/location_bar.h"
28 #include "chrome/browser/ui/omnibox/omnibox_edit_model.h"
29 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h"
30 #include "chrome/browser/ui/omnibox/omnibox_view.h"
309 // TODO(kmadhusu): Set the page initial states (such as omnibox margin, etc)
410 OmniboxView* omnibox = browser->window()->GetLocationBar()->GetOmniboxView();
420 omnibox->SetFocus();
421 omnibox->model()->SetCaretVisibility(true);
424 omnibox->SetFocus();
425 omnibox->model()->SetCaretVisibility(false)
    [all...]
instant_extended_interactive_uitest.cc 48 #include "chrome/browser/ui/omnibox/omnibox_view.h"
170 omnibox()->model()->OnUpOrDownKeyPressed(1);
176 omnibox()->model()->OnUpOrDownKeyPressed(-1);
182 omnibox()->model()->OnEscapeKeyPressed();
251 return omnibox()->model()->autocomplete_controller()->search_provider()->
693 // Test to verify that the omnibox search query is updated on browser
699 // Focus omnibox and confirm overlay isn't shown.
712 EXPECT_EQ(ASCIIToUTF16("flowers"), omnibox()->GetText());
714 // Typing in the new search query in omnibox.
720 EXPECT_EQ(ASCIIToUTF16("cattles"), omnibox()->GetText())
    [all...]
instant_test_utils.cc 16 #include "chrome/browser/ui/omnibox/omnibox_view.h"
104 // If the omnibox already has focus, just notify Instant.
105 if (omnibox()->model()->has_focus()) {
129 omnibox()->SetUserText(UTF8ToUTF16(text));
179 return UTF16ToUTF8(omnibox()->GetText());
195 omnibox()->GetSelectionBounds(&start, &end);
198 return omnibox()->GetText().substr(start, end - start);
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).
instant_extended_manual_interactive_uitest.cc 15 #include "chrome/browser/ui/omnibox/omnibox_view.h"
152 EXPECT_EQ(OMNIBOX_FOCUS_INVISIBLE, omnibox()->model()->focus_state());
164 // The omnibox should say "test" and have visible focus.
166 EXPECT_EQ(OMNIBOX_FOCUS_VISIBLE, omnibox()->model()->focus_state());
  /external/chromium_org/chrome/renderer/resources/extensions/
omnibox_custom_bindings.js 5 // Custom binding for the omnibox API. Only injected into the v8 contexts
6 // for extensions which have permission for the omnibox API.
8 var binding = require('binding').Binding.create('omnibox');
24 // Parses the xml syntax supported by omnibox suggestion results. Returns an
114 eventBindings.registerArgumentMassager('omnibox.onInputChanged',
119 chrome.omnibox.sendSuggestions(requestId, suggestions);
  /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/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/common/extensions/docs/examples/extensions/chrome_search/
background.js 7 chrome.omnibox.onInputChanged.addListener(
73 chrome.omnibox.setDefaultSuggestion({
97 chrome.omnibox.setDefaultSuggestion({
102 chrome.omnibox.onInputStarted.addListener(function() {
106 chrome.omnibox.onInputCancelled.addListener(function() {
156 chrome.omnibox.onInputEntered.addListener(function(text) {
  /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/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()) {
  /external/chromium/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 69 // the omnibox.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 73 // the omnibox.
  /external/chromium_org/chrome/test/ext_auto/auto_provider/
connection_handler.js 100 if (funcName == 'chrome.omnibox.setDefaultSuggestion')
  /external/chromium_org/chrome/browser/autocomplete/
keyword_provider.cc 16 #include "chrome/browser/extensions/api/omnibox/omnibox_api.h"
31 namespace omnibox_api = extensions::api::omnibox;
589 // default match, lest we introduce race conditions in the omnibox user
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 136 * is focused, any text the user types goes directly into the omnibox.
203 * The state of the NTP when a query is entered into the Omnibox.

Completed in 1142 milliseconds