| 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 #include "chrome/browser/ui/startup/startup_browser_creator_win.h" | 5 #include "chrome/browser/ui/startup/startup_browser_creator_win.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/win/metro.h" | 8 #include "base/win/metro.h" |
| 9 | 9 |
| 10 #include "chrome/browser/search_engines/template_url.h" | 10 #include "chrome/browser/search_engines/template_url.h" |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 DCHECK(search_url.SupportsReplacement()); | 55 DCHECK(search_url.SupportsReplacement()); |
| 56 return GURL(search_url.ReplaceSearchTerms(search_string, | 56 return GURL(search_url.ReplaceSearchTerms(search_string, |
| 57 TemplateURLRef::NO_SUGGESTIONS_AVAILABLE, string16())); | 57 TemplateURLRef::NO_SUGGESTIONS_AVAILABLE, string16())); |
| 58 } | 58 } |
| 59 } | 59 } |
| 60 return GURL(); | 60 return GURL(); |
| 61 } | 61 } |
| 62 | 62 |
| 63 } // namespace browser | 63 } // namespace browser |
| 64 | 64 |
| OLD | NEW |