Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1649)

Unified Diff: components/autocomplete/autocomplete_provider_listener.h

Issue 443043003: Rename components/autocomplete to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: components/autocomplete/autocomplete_provider_listener.h
diff --git a/components/autocomplete/autocomplete_provider_listener.h b/components/autocomplete/autocomplete_provider_listener.h
deleted file mode 100644
index e005902f9734a700d61a648c1ebde4458be4c988..0000000000000000000000000000000000000000
--- a/components/autocomplete/autocomplete_provider_listener.h
+++ /dev/null
@@ -1,30 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_PROVIDER_LISTENER_H_
-#define COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_PROVIDER_LISTENER_H_
-
-class AutocompleteProviderListener {
- public:
- // Called by a provider as a notification that something has changed.
- // |updated_matches| should be true iff the matches have changed in some
- // way (they may not have changed if, for example, the provider did an
- // asynchronous query to get more matches, came up with none, and is now
- // giving up).
- //
- // NOTE: Providers MUST only call this method while processing asynchronous
- // queries. Do not call this for a synchronous query.
- //
- // NOTE: There's no parameter to tell the listener _which_ provider is
- // calling it. Because the AutocompleteController (the typical listener)
- // doesn't cache the providers' individual matches locally, it has to get
- // them all again when this is called anyway, so such a parameter wouldn't
- // actually be useful.
- virtual void OnProviderUpdate(bool updated_matches) = 0;
-
- protected:
- virtual ~AutocompleteProviderListener() {}
-};
-
-#endif // COMPONENTS_AUTOCOMPLETE_AUTOCOMPLETE_PROVIDER_LISTENER_H_
« no previous file with comments | « components/autocomplete/autocomplete_provider.cc ('k') | components/autocomplete/autocomplete_scheme_classifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698