| 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/string16.h" | 11 #include "base/strings/string16.h" |
| 12 #include "chrome/browser/autocomplete/autocomplete_controller.h" | 12 #include "chrome/browser/autocomplete/autocomplete_controller.h" |
| 13 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 13 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" |
| 14 | 14 |
| 15 struct AutocompleteMatch; | 15 struct AutocompleteMatch; |
| 16 class AutocompleteResult; | 16 class AutocompleteResult; |
| 17 class GURL; | 17 class GURL; |
| 18 class InstantController; | 18 class InstantController; |
| 19 class OmniboxEditModel; | 19 class OmniboxEditModel; |
| 20 class OmniboxPopupModel; | 20 class OmniboxPopupModel; |
| 21 class Profile; | 21 class Profile; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 Profile* profile_; | 104 Profile* profile_; |
| 105 | 105 |
| 106 OmniboxPopupModel* popup_; | 106 OmniboxPopupModel* popup_; |
| 107 | 107 |
| 108 scoped_ptr<AutocompleteController> autocomplete_controller_; | 108 scoped_ptr<AutocompleteController> autocomplete_controller_; |
| 109 | 109 |
| 110 DISALLOW_COPY_AND_ASSIGN(OmniboxController); | 110 DISALLOW_COPY_AND_ASSIGN(OmniboxController); |
| 111 }; | 111 }; |
| 112 | 112 |
| 113 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_ | 113 #endif // CHROME_BROWSER_UI_OMNIBOX_OMNIBOX_CONTROLLER_H_ |
| OLD | NEW |