| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |