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

Side by Side Diff: chrome/browser/ui/omnibox/omnibox_controller.h

Issue 13932034: Omnibox refactor, introduced OmniboxController. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 8 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 | « no previous file | chrome/browser/ui/omnibox/omnibox_controller.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 2013 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 CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_
7
8 #include "base/compiler_specific.h"
9 #include "base/memory/scoped_ptr.h"
10 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h"
11
12 class AutocompleteController;
13 class OmniboxEditModel;
14 class Profile;
15
16 // This class controls the various services that can modify the content
17 // for the omnibox, including AutocompleteController and InstantController. It
18 // is responsible of updating the omnibox content.
19 // TODO(beaudoin): Keep on expanding this class so that OmniboxEditModel no
20 // longer needs to hold any reference to AutocompleteController. Also make
21 // this the point of contact between InstantController and OmniboxEditModel.
22 // As the refactor progresses, keep the class comment up-to-date to
23 // precisely explain what this class is doing.
24 class OmniboxController : public AutocompleteControllerDelegate {
25
26 public:
27 OmniboxController(OmniboxEditModel* omnibox_edit_model, Profile* profile);
28 virtual ~OmniboxController();
29
30 // AutocompleteControllerDelegate:
31 virtual void OnResultChanged(bool default_match_changed) OVERRIDE;
32
33 AutocompleteController* autocomplete_controller() {
34 return autocomplete_controller_.get();
35 }
36
37 private:
38 // Weak, it owns us.
39 // TODO(beaudoin): Consider defining a delegate to ease unit testing.
40 OmniboxEditModel* omnibox_edit_model_;
41
42 scoped_ptr<AutocompleteController> autocomplete_controller_;
43
44 DISALLOW_COPY_AND_ASSIGN(OmniboxController);
45 };
46
47 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/omnibox/omnibox_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698