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

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

Issue 1191373002: Componentize AutocompleteController and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prep_builtin_provider_for_c14n
Patch Set: Rebase Created 5 years, 5 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 2013 The Chromium Authors. All rights reserved. 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 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_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_ 5 #ifndef CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_
6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_ 6 #define CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_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 "chrome/browser/autocomplete/autocomplete_controller.h"
13 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h"
14 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h" 12 #include "chrome/browser/bitmap_fetcher/bitmap_fetcher_service.h"
13 #include "components/omnibox/autocomplete_controller.h"
14 #include "components/omnibox/autocomplete_controller_delegate.h"
15 #include "components/omnibox/autocomplete_match.h" 15 #include "components/omnibox/autocomplete_match.h"
16 16
17 class AUtocompleteInput; 17 class AUtocompleteInput;
18 struct AutocompleteMatch; 18 struct AutocompleteMatch;
19 class AutocompleteResult; 19 class AutocompleteResult;
20 class InstantController; 20 class InstantController;
21 class OmniboxEditModel; 21 class OmniboxEditModel;
22 class OmniboxPopupModel; 22 class OmniboxPopupModel;
23 class Profile; 23 class Profile;
24 24
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 AutocompleteMatch current_match_; 95 AutocompleteMatch current_match_;
96 96
97 BitmapFetcherService::RequestId request_id_; 97 BitmapFetcherService::RequestId request_id_;
98 98
99 base::WeakPtrFactory<OmniboxController> weak_ptr_factory_; 99 base::WeakPtrFactory<OmniboxController> weak_ptr_factory_;
100 100
101 DISALLOW_COPY_AND_ASSIGN(OmniboxController); 101 DISALLOW_COPY_AND_ASSIGN(OmniboxController);
102 }; 102 };
103 103
104 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_ 104 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/cocoa/toolbar/toolbar_controller.mm ('k') | chrome/browser/ui/omnibox/omnibox_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698