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

Side by Side Diff: athena/content/shell/scheme_classifier_factory.cc

Issue 584263002: Use ChromeAutocompleteSchemeClassifier for Athena on Chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix Created 6 years, 3 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
« no previous file with comments | « athena/content/public/scheme_classifier_factory.h ('k') | athena/main/url_search_provider.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "athena/content/public/scheme_classifier_factory.h"
6
7 #include "components/metrics/proto/omnibox_input_type.pb.h"
8 #include "net/url_request/url_request.h"
9
10 namespace athena {
11
12 namespace {
13
14 // The AutocompleteSchemeClassifier implementation for athena_main.
15 class AthenaShellSchemeClassifier : public AutocompleteSchemeClassifier {
16 public:
17 AthenaShellSchemeClassifier() {}
18 virtual ~AthenaShellSchemeClassifier() {}
19
20 // AutocompleteSchemeClassifier:
21 virtual metrics::OmniboxInputType::Type GetInputTypeForScheme(
22 const std::string& scheme) const OVERRIDE {
23 if (net::URLRequest::IsHandledProtocol(scheme))
24 return metrics::OmniboxInputType::URL;
25 return metrics::OmniboxInputType::INVALID;
26 }
27
28 private:
29 DISALLOW_COPY_AND_ASSIGN(AthenaShellSchemeClassifier);
30 };
31
32 } // namespace
33
34 scoped_ptr<AutocompleteSchemeClassifier> CreateSchemeClassifier(
35 content::BrowserContext* context) {
36 return scoped_ptr<AutocompleteSchemeClassifier>(
37 new AthenaShellSchemeClassifier());
38 }
39
40 } // namespace athena
OLDNEW
« no previous file with comments | « athena/content/public/scheme_classifier_factory.h ('k') | athena/main/url_search_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698