| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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_SEARCH_SEARCH_H_ | 5 #ifndef CHROME_BROWSER_INSTANT_SEARCH_H_ |
| 6 #define CHROME_BROWSER_UI_SEARCH_SEARCH_H_ | 6 #define CHROME_BROWSER_INSTANT_SEARCH_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 #include <utility> | 9 #include <utility> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/string16.h" | 13 #include "base/string16.h" |
| 14 | 14 |
| 15 class GURL; | 15 class GURL; |
| 16 class PrefRegistrySyncable; | 16 class PrefRegistrySyncable; |
| (...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 const FieldTrialFlags& flags); | 149 const FieldTrialFlags& flags); |
| 150 | 150 |
| 151 // Coerces the commandline Instant URL to look like a template URL, so that we | 151 // Coerces the commandline Instant URL to look like a template URL, so that we |
| 152 // can extract search terms from it. Exposed for testing only. | 152 // can extract search terms from it. Exposed for testing only. |
| 153 GURL CoerceCommandLineURLToTemplateURL(const GURL& instant_url, | 153 GURL CoerceCommandLineURLToTemplateURL(const GURL& instant_url, |
| 154 const TemplateURLRef& ref); | 154 const TemplateURLRef& ref); |
| 155 | 155 |
| 156 } // namespace search | 156 } // namespace search |
| 157 } // namespace chrome | 157 } // namespace chrome |
| 158 | 158 |
| 159 #endif // CHROME_BROWSER_UI_SEARCH_SEARCH_H_ | 159 #endif // CHROME_BROWSER_INSTANT_SEARCH_H_ |
| OLD | NEW |