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

  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_views.cc 5 #include "chrome/browser/ui/views/omnibox/omnibox_views.h"
7 #include "chrome/browser/ui/omnibox/omnibox_edit_controller.h"
9 #include "chrome/browser/ui/views/omnibox/omnibox_view_views.h"
13 #include "chrome/browser/ui/views/omnibox/omnibox_view_win.h"
45 OmniboxViewViews* omnibox = new OmniboxViewViews( local
48 omnibox->Init();
49 return omnibox;
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api.cc 5 #include "chrome/browser/extensions/api/omnibox/omnibox_api.h"
23 #include "chrome/common/extensions/api/omnibox.h"
24 #include "chrome/common/extensions/api/omnibox/omnibox_handler.h"
31 const char kOnInputStarted[] = "omnibox.onInputStarted";
32 const char kOnInputChanged[] = "omnibox.onInputChanged";
33 const char kOnInputEntered[] = "omnibox.onInputEntered";
34 const char kOnInputCancelled[] = "omnibox.onInputCancelled";
39 namespace omnibox = api::omnibox;
40 namespace SendSuggestions = omnibox::SendSuggestions
    [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 18 #include "chrome/common/extensions/api/omnibox.h"
41 // Event router class for events related to the omnibox API.
44 // The user has just typed the omnibox keyword. This is sent exactly once in
49 // The user has changed what is typed into the omnibox while in an extension
57 // The user has accepted the omnibox input.
64 // The user has cleared the keyword, or closed the omnibox popup. This is
75 DECLARE_EXTENSION_FUNCTION("omnibox.sendSuggestions", OMNIBOX_SENDSUGGESTIONS)
101 // Returns the icon to display in the omnibox for the given extension.
104 // Returns the icon to display in the omnibox popup window for the given
129 // Keeps track of favicon-sized omnibox icons for extensions
    [all...]
  /external/chromium_org/chrome/browser/ui/search/
instant_test_utils.cc 16 #include "chrome/browser/ui/omnibox/omnibox_view.h"
83 // If the omnibox already has focus, just notify Instant.
84 if (omnibox()->model()->has_focus()) {
108 omnibox()->SetUserText(UTF8ToUTF16(text));
158 return UTF16ToUTF8(omnibox()->GetText());
174 omnibox()->GetSelectionBounds(&start, &end);
177 return omnibox()->GetText().substr(start, end - start);
instant_extended_interactive_uitest.cc 46 #include "chrome/browser/ui/omnibox/omnibox_view.h"
173 omnibox()->model()->OnUpOrDownKeyPressed(1);
179 omnibox()->model()->OnUpOrDownKeyPressed(-1);
185 omnibox()->model()->OnEscapeKeyPressed();
252 return omnibox()->model()->autocomplete_controller()->search_provider()->
523 // Explicitly unfocus the omnibox.
526 EXPECT_FALSE(omnibox()->model()->has_focus());
535 // Omnibox should have focus.
536 EXPECT_TRUE(omnibox()->model()->has_focus());
551 // Omnibox should be empty
    [all...]
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());
instant_test_utils.h 17 #include "chrome/browser/ui/omnibox/location_bar.h"
62 OmniboxView* omnibox() { function in class:InstantTestBase
101 // Returns the omnibox's inline autocompletion (shown in blue highlight).
  /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;
11 * into the Omnibox.
30 * the omnibox (e.g. when navigating away, closing the keyboard or changing tabs)
50 * Potentailly invokes a pre-render or pre-connect given the url typed into the omnibox and
51 * a corresponding autocomplete result. This should be invoked everytime the omnibox changes
54 * @param url url in the omnibox.
  /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 31 OmniboxPrerender* omnibox = new OmniboxPrerender(env, obj); local
32 return reinterpret_cast<jint>(omnibox);
  /external/chromium_org/chrome/browser/resources/google_now/
background_test_util.js 33 instrumented['omnibox'] = {onInputEntered: emptyListener};
background.js 129 tasks.instrumentChromeApiFunction('omnibox.onInputEntered.addListener', 0);
940 instrumented.omnibox.onInputEntered.addListener(function(text) {
  /external/chromium_org/chrome/test/base/
ui_test_utils.cc 49 #include "chrome/browser/ui/omnibox/location_bar.h"
50 #include "chrome/browser/ui/omnibox/omnibox_view.h"
411 OmniboxView* omnibox = location_bar->GetLocationEntry(); local
412 omnibox->model()->OnSetFocus(false);
413 omnibox->SetUserText(ASCIIToUTF16(input));
415 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"
30 namespace omnibox_api = extensions::api::omnibox;
583 // default match, lest we introduce race conditions in the omnibox user
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_view_browsertest.cc 29 #include "chrome/browser/ui/omnibox/location_bar.h"
30 #include "chrome/browser/ui/omnibox/omnibox_popup_model.h"
31 #include "chrome/browser/ui/omnibox/omnibox_view.h"
553 // Delete all text in omnibox.
557 // Escape shall revert the text in omnibox.
1284 const views::View* omnibox = GetBrowserView()->GetViewByID(VIEW_ID_OMNIBOX); local
    [all...]
  /external/chromium_org/chrome/browser/resources/local_ntp/
local_ntp.js 137 * is focused, any text the user types goes directly into the omnibox.
204 * The state of the NTP when a query is entered into the Omnibox.

Completed in 590 milliseconds