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

Side by Side Diff: chrome/browser/autocomplete/autocomplete_classifier.h

Issue 648653003: Standardize usage of virtual/override/final in chrome/browser/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_ 5 #ifndef CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_
6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_ 6 #define CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string16.h" 11 #include "base/strings/string16.h"
12 #include "components/keyed_service/core/keyed_service.h" 12 #include "components/keyed_service/core/keyed_service.h"
13 #include "components/metrics/proto/omnibox_event.pb.h" 13 #include "components/metrics/proto/omnibox_event.pb.h"
14 #include "components/omnibox/autocomplete_scheme_classifier.h" 14 #include "components/omnibox/autocomplete_scheme_classifier.h"
15 15
16 class AutocompleteController; 16 class AutocompleteController;
17 struct AutocompleteMatch; 17 struct AutocompleteMatch;
18 class GURL; 18 class GURL;
19 19
20 class AutocompleteClassifier : public KeyedService { 20 class AutocompleteClassifier : public KeyedService {
21 public: 21 public:
22 // Bitmap of AutocompleteProvider::Type values describing the default set of 22 // Bitmap of AutocompleteProvider::Type values describing the default set of
23 // providers queried for the omnibox. Intended to be passed to 23 // providers queried for the omnibox. Intended to be passed to
24 // AutocompleteController(). 24 // AutocompleteController().
25 static const int kDefaultOmniboxProviders; 25 static const int kDefaultOmniboxProviders;
26 26
27 AutocompleteClassifier( 27 AutocompleteClassifier(
28 scoped_ptr<AutocompleteController> controller_, 28 scoped_ptr<AutocompleteController> controller_,
29 scoped_ptr<AutocompleteSchemeClassifier> scheme_classifier); 29 scoped_ptr<AutocompleteSchemeClassifier> scheme_classifier);
30 virtual ~AutocompleteClassifier(); 30 ~AutocompleteClassifier() override;
31 31
32 // Given some string |text| that the user wants to use for navigation, 32 // Given some string |text| that the user wants to use for navigation,
33 // determines how it should be interpreted. 33 // determines how it should be interpreted.
34 // |prefer_keyword| should be true the when keyword UI is onscreen; see 34 // |prefer_keyword| should be true the when keyword UI is onscreen; see
35 // comments on AutocompleteController::Start(). 35 // comments on AutocompleteController::Start().
36 // |allow_exact_keyword_match| should be true when treating the string as a 36 // |allow_exact_keyword_match| should be true when treating the string as a
37 // potential keyword search is valid; see 37 // potential keyword search is valid; see
38 // AutocompleteInput::allow_exact_keyword_match(). 38 // AutocompleteInput::allow_exact_keyword_match().
39 // |page_classification| gives information about the context (e.g., is the 39 // |page_classification| gives information about the context (e.g., is the
40 // user on a search results page doing search term replacement); this may 40 // user on a search results page doing search term replacement); this may
41 // be useful in deciding how the input should be interpreted. 41 // be useful in deciding how the input should be interpreted.
42 // |match| should be a non-NULL outparam that will be set to the default 42 // |match| should be a non-NULL outparam that will be set to the default
43 // match for this input, if any (for invalid input, there will be no default 43 // match for this input, if any (for invalid input, there will be no default
44 // match, and |match| will be left unchanged). |alternate_nav_url| is a 44 // match, and |match| will be left unchanged). |alternate_nav_url| is a
45 // possibly-NULL outparam that, if non-NULL, will be set to the navigational 45 // possibly-NULL outparam that, if non-NULL, will be set to the navigational
46 // URL (if any) in case of an accidental search; see comments on 46 // URL (if any) in case of an accidental search; see comments on
47 // AutocompleteResult::alternate_nav_url_ in autocomplete.h. 47 // AutocompleteResult::alternate_nav_url_ in autocomplete.h.
48 void Classify(const base::string16& text, 48 void Classify(const base::string16& text,
49 bool prefer_keyword, 49 bool prefer_keyword,
50 bool allow_exact_keyword_match, 50 bool allow_exact_keyword_match,
51 metrics::OmniboxEventProto::PageClassification 51 metrics::OmniboxEventProto::PageClassification
52 page_classification, 52 page_classification,
53 AutocompleteMatch* match, 53 AutocompleteMatch* match,
54 GURL* alternate_nav_url); 54 GURL* alternate_nav_url);
55 55
56 private: 56 private:
57 // KeyedService: 57 // KeyedService:
58 virtual void Shutdown() override; 58 void Shutdown() override;
59 59
60 scoped_ptr<AutocompleteController> controller_; 60 scoped_ptr<AutocompleteController> controller_;
61 scoped_ptr<AutocompleteSchemeClassifier> scheme_classifier_; 61 scoped_ptr<AutocompleteSchemeClassifier> scheme_classifier_;
62 62
63 // Are we currently in Classify? Used to verify Classify isn't invoked 63 // Are we currently in Classify? Used to verify Classify isn't invoked
64 // recursively, since this can corrupt state and cause crashes. 64 // recursively, since this can corrupt state and cause crashes.
65 bool inside_classify_; 65 bool inside_classify_;
66 66
67 DISALLOW_IMPLICIT_CONSTRUCTORS(AutocompleteClassifier); 67 DISALLOW_IMPLICIT_CONSTRUCTORS(AutocompleteClassifier);
68 }; 68 };
69 69
70 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_ 70 #endif // CHROME_BROWSER_AUTOCOMPLETE_AUTOCOMPLETE_CLASSIFIER_H_
OLDNEW
« no previous file with comments | « chrome/browser/app_controller_mac_browsertest.mm ('k') | chrome/browser/autocomplete/autocomplete_classifier_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698