blob: b51237ebb996ec8ba2420b1a7d37a7face4d3997 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// 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 CHROME_BROWSER_AUTOCOMPLETE_CHROME_AUTOCOMPLETE_SCHEME_CLASSIFIER_H_
#define CHROME_BROWSER_AUTOCOMPLETE_CHROME_AUTOCOMPLETE_SCHEME_CLASSIFIER_H_
#include "base/macros.h"
#include "components/autocomplete/autocomplete_scheme_classifier.h"
class Profile;
// The subclass to provide chrome-specific scheme handling.
class ChromeAutocompleteSchemeClassifier : public AutocompleteSchemeClassifier {
public:
explicit ChromeAutocompleteSchemeClassifier(Profile* profile);
virtual ~ChromeAutocompleteSchemeClassifier();
// AutocompleteInputSchemeChecker:
virtual metrics::OmniboxInputType::Type GetInputTypeForScheme(
const std::string& scheme) const OVERRIDE;
private:
Profile* profile_;
DISALLOW_COPY_AND_ASSIGN(ChromeAutocompleteSchemeClassifier);
};
#endif // CHROME_BROWSER_AUTOCOMPLETE_CHROME_AUTOCOMPLETE_SCHEME_CLASSIFIER_H_
|