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

Side by Side Diff: components/autocomplete/test_scheme_classifier.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef COMPONENTS_AUTOCOMPLETE_TEST_SCHEME_CLASSIFIER_
6 #define COMPONENTS_AUTOCOMPLETE_TEST_SCHEME_CLASSIFIER_
7
8 #include "base/macros.h"
9 #include "components/autocomplete/autocomplete_scheme_classifier.h"
10
11 // The subclass of AutocompleteSchemeClassifier for testing.
12 class TestSchemeClassifier : public AutocompleteSchemeClassifier {
13 public:
14 TestSchemeClassifier();
15 virtual ~TestSchemeClassifier();
16
17 // Overridden from AutocompleteInputSchemeChecker:
18 virtual metrics::OmniboxInputType::Type GetInputTypeForScheme(
19 const std::string& scheme) const OVERRIDE;
20
21 private:
22 DISALLOW_COPY_AND_ASSIGN(TestSchemeClassifier);
23 };
24
25 #endif // COMPONENTS_AUTOCOMPLETE_TEST_SCHEME_CLASSIFIER_
OLDNEW
« no previous file with comments | « components/autocomplete/search_suggestion_parser.cc ('k') | components/autocomplete/test_scheme_classifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698