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

Side by Side Diff: components/autocomplete/test_scheme_classifier.cc

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
« no previous file with comments | « components/autocomplete/test_scheme_classifier.h ('k') | components/autocomplete/url_prefix.h » ('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 "components/autocomplete/test_scheme_classifier.h"
6 #include "components/metrics/proto/omnibox_input_type.pb.h"
7 #include "net/url_request/url_request.h"
8 #include "url/url_constants.h"
9
10 TestSchemeClassifier::TestSchemeClassifier() {}
11
12 TestSchemeClassifier::~TestSchemeClassifier() {}
13
14 metrics::OmniboxInputType::Type TestSchemeClassifier::GetInputTypeForScheme(
15 const std::string& scheme) const {
16 // This doesn't check the preference but check some chrome-ish schemes.
17 const char* kKnownURLSchemes[] = {
18 url::kFileScheme, url::kAboutScheme, url::kFtpScheme, url::kBlobScheme,
19 url::kFileSystemScheme, "view-source", "javascript", "chrome", "chrome-ui",
20 };
21 for (size_t i = 0; i < arraysize(kKnownURLSchemes); ++i) {
22 if (scheme == kKnownURLSchemes[i])
23 return metrics::OmniboxInputType::URL;
24 }
25 if (net::URLRequest::IsHandledProtocol(scheme))
26 return metrics::OmniboxInputType::URL;
27
28 return metrics::OmniboxInputType::INVALID;
29 }
OLDNEW
« no previous file with comments | « components/autocomplete/test_scheme_classifier.h ('k') | components/autocomplete/url_prefix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698