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

  /external/chromium_org/chrome/browser/ui/app_list/search/
search_controller.h 28 // to all search providers, then invokes the mixer to mix and to publish the
50 typedef ScopedVector<SearchProvider> Providers;
69 Providers providers_;
search_controller.cc 40 // Maximum time (in milliseconds) to wait to the search providers to finish.
107 for (Providers::iterator it = providers_.begin();
125 for (Providers::iterator it = providers_.begin();
mixer.cc 51 // Used to group relevant providers together fox mixing their results.
67 for (Providers::const_iterator provider_it = providers_.begin();
115 typedef std::vector<SearchProvider*> Providers;
119 Providers providers_; // Not owned.
  /external/chromium_org/components/policy/core/browser/
configuration_policy_pref_store_test.h 36 PolicyServiceImpl::Providers providers_;
  /external/chromium_org/chrome/browser/ui/omnibox/
omnibox_controller_unittest.cc 22 const AutocompleteController::Providers& GetAutocompleteProviders() const {
23 return omnibox_controller_->autocomplete_controller()->providers();
43 // Checks that the list of autocomplete providers used by the OmniboxController
46 const AutocompleteController::Providers& providers = local
49 for (size_t i = 0; i < providers.size(); ++i) {
51 int type = providers[i]->type();
58 // Ensure we saw all the providers we expected.
64 // First collect the basic providers.
66 const AutocompleteController::Providers& providers local
    [all...]
  /external/chromium_org/components/policy/core/common/
policy_service_impl.h 30 typedef std::vector<ConfigurationPolicyProvider*> Providers;
32 // The PolicyServiceImpl will merge policies from |providers|. |providers|
35 // the providers, and they must outlive the PolicyServiceImpl.
36 explicit PolicyServiceImpl(const Providers& providers);
63 // Combines the policies from all the providers, and notifies the observers
67 // Checks if all providers are initialized, and notifies the observers
74 // The providers passed in the constructor, in order of decreasing priority.
75 Providers providers_
    [all...]
policy_service_impl.cc 19 typedef PolicyServiceImpl::Providers::const_iterator Iterator;
35 // single Dictionary policy when all providers have support for that. For
72 PolicyServiceImpl::PolicyServiceImpl(const Providers& providers)
76 providers_ = providers;
77 for (Iterator it = providers.begin(); it != providers.end(); ++it) {
133 // Refresh is immediately complete if there are no providers. See the note
141 // Some providers might invoke OnUpdatePolicy synchronously while handling
154 // Note: a policy change may trigger further policy changes in some providers
    [all...]
policy_service_impl_unittest.cc 122 PolicyServiceImpl::Providers providers; variable
123 providers.push_back(&provider0_);
124 providers.push_back(&provider1_);
125 providers.push_back(&provider2_);
126 policy_service_.reset(new PolicyServiceImpl(providers));
530 // OnPolicyRefresh should be triggered only after all providers are
539 // one to complete, then all providers must refresh again.
553 // Providers 0 and 1 must reload again.
614 PolicyServiceImpl::Providers providers local
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
autocomplete_controller.h 32 // providers, each of which keeps track of its own matches and whether it has
38 // controller will in turn communicate to all the providers. No callbacks will
47 // matches from a series of providers into one AutocompleteResult.
50 typedef std::vector<scoped_refptr<AutocompleteProvider> > Providers;
62 // Starts an autocomplete query, which continues until all providers are
102 // of various providers. In turn, calls
142 const Providers& providers() const { return providers_; } function in class:AutocompleteController
165 // set from the providers' current data.)
192 // Updates |done_| to be accurate with respect to current providers' statuses
    [all...]
autocomplete_controller.cc 228 // The providers may have tasks outstanding that hold refs to them. We need
247 // changed since the last query, and some providers can do much less work (and
261 for (Providers::iterator i(providers_.begin()); i != providers_.end(); ++i) {
314 for (Providers::const_iterator i(providers_.begin()); i != providers_.end();
336 // Call Start() on all prefix-based providers with an INVALID
339 for (Providers::iterator i(providers_.begin()); i != providers_.end(); ++i) {
379 // Multiple providers may provide synchronous results, so we only update the
388 for (Providers::const_iterator i(providers_.begin()); i != providers_.end();
399 for (Providers::const_iterator i(providers_.begin()); i != providers_.end();
460 for (Providers::const_iterator i(providers_.begin())
    [all...]
autocomplete_provider_unittest.cc 179 // |provider2_ptr| are updated to point to the new providers if non-NULL.
184 // Runs a query on the input "a", and makes sure both providers' input is
264 AutocompleteController::Providers providers; local
266 // Construct two new providers, with either the same or different prefixes.
272 providers.push_back(provider1);
280 providers.push_back(provider2);
282 // Reset the controller to contain our new providers.
285 // We're going to swap the providers vector, but the old vector should be
288 controller_->providers_.swap(providers);
    [all...]
  /external/chromium_org/components/omnibox/
search_provider.h 96 // Manages the providers (TemplateURLs) used by SearchProvider. Two providers
102 class Providers {
104 explicit Providers(TemplateURLService* template_url_service);
106 // Returns true if the specified providers match the two providers cached
114 // Resets the cached providers.
140 DISALLOW_COPY_AND_ASSIGN(Providers);
230 // callers own the returned URLFetcher, which is NULL for invalid providers.
355 Providers providers_
    [all...]
search_provider.cc 89 // SearchProvider::Providers --------------------------------------------------
91 SearchProvider::Providers::Providers(TemplateURLService* template_url_service)
94 const TemplateURL* SearchProvider::Providers::GetDefaultProviderURL() const {
99 const TemplateURL* SearchProvider::Providers::GetKeywordProviderURL() const {
228 // No valid providers.
234 // or the providers, abort the query.
525 // Both the above can fail if the providers have been modified or deleted
    [all...]
  /external/chromium_org/chrome/browser/policy/
profile_policy_connector_factory.cc 130 PolicyServiceImpl::Providers providers; local
131 providers.push_back(test_providers_.front());
133 scoped_ptr<PolicyService> service(new PolicyServiceImpl(providers));
  /external/chromium_org/chrome/browser/prefs/
proxy_policy_unittest.cc 91 PolicyServiceImpl::Providers providers; variable
92 providers.push_back(&provider_);
93 policy_service_.reset(new PolicyServiceImpl(providers));
  /external/chromium_org/chrome/browser/chromeos/policy/
cloud_external_data_policy_observer_unittest.cc 330 PolicyServiceImpl::Providers providers; local
331 providers.push_back(device_local_account_policy_provider_.get());
334 scoped_ptr<PolicyService>(new PolicyServiceImpl(providers)));
365 PolicyServiceImpl::Providers providers; local
366 providers.push_back(&user_policy_provider_);
369 scoped_ptr<PolicyService>(new PolicyServiceImpl(providers)));
    [all...]
network_configuration_updater_unittest.cc 209 PolicyServiceImpl::Providers providers; variable
210 providers.push_back(&provider_);
211 policy_service_.reset(new PolicyServiceImpl(providers));

Completed in 774 milliseconds