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_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ | 5 #ifndef CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ |
6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ | 6 #define CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
11 #include "base/strings/string16.h" | 11 #include "base/strings/string16.h" |
12 #include "chrome/common/instant_types.h" | 12 #include "chrome/common/search/instant_types.h" |
13 #include "content/public/browser/navigation_controller.h" | 13 #include "content/public/browser/navigation_controller.h" |
14 | 14 |
15 class GURL; | 15 class GURL; |
16 class Profile; | 16 class Profile; |
17 struct AutocompleteMatch; | 17 struct AutocompleteMatch; |
18 | 18 |
19 namespace chrome { | 19 namespace chrome { |
20 struct NavigateParams; | 20 struct NavigateParams; |
21 } | 21 } |
22 | 22 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 const GURL prerender_url_; | 99 const GURL prerender_url_; |
100 | 100 |
101 std::unique_ptr<prerender::PrerenderHandle> prerender_handle_; | 101 std::unique_ptr<prerender::PrerenderHandle> prerender_handle_; |
102 | 102 |
103 InstantSuggestion last_instant_suggestion_; | 103 InstantSuggestion last_instant_suggestion_; |
104 | 104 |
105 DISALLOW_COPY_AND_ASSIGN(InstantSearchPrerenderer); | 105 DISALLOW_COPY_AND_ASSIGN(InstantSearchPrerenderer); |
106 }; | 106 }; |
107 | 107 |
108 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ | 108 #endif // CHROME_BROWSER_UI_SEARCH_INSTANT_SEARCH_PRERENDERER_H_ |
OLD | NEW |