| OLD | NEW |
| 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_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER2_H_ | 5 #ifndef CHROME_BROWSER_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER_H_ |
| 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER2_H_ | 6 #define CHROME_BROWSER_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 12 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" | 12 #include "chrome/browser/autocomplete/autocomplete_controller_delegate.h" |
| 13 #include "chrome/browser/ui/webui/options2/options_ui2.h" | 13 #include "chrome/browser/ui/webui/options2/options_ui.h" |
| 14 | 14 |
| 15 class AutocompleteController; | 15 class AutocompleteController; |
| 16 | 16 |
| 17 namespace base { | 17 namespace base { |
| 18 class DictionaryValue; | 18 class DictionaryValue; |
| 19 class ListValue; | 19 class ListValue; |
| 20 } | 20 } |
| 21 | 21 |
| 22 namespace options2 { | 22 namespace options2 { |
| 23 | 23 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 38 private: | 38 private: |
| 39 void RequestAutocompleteSuggestions(const base::ListValue* args); | 39 void RequestAutocompleteSuggestions(const base::ListValue* args); |
| 40 | 40 |
| 41 scoped_ptr<AutocompleteController> autocomplete_controller_; | 41 scoped_ptr<AutocompleteController> autocomplete_controller_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(HomePageOverlayHandler); | 43 DISALLOW_COPY_AND_ASSIGN(HomePageOverlayHandler); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace options2 | 46 } // namespace options2 |
| 47 | 47 |
| 48 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER2_H_ | 48 #endif // CHROME_BROWSER_UI_WEBUI_OPTIONS2_HOME_PAGE_OVERLAY_HANDLER_H_ |
| OLD | NEW |