| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/views/first_run_search_engine_view.h" | 5 #include "chrome/browser/ui/views/first_run_search_engine_view.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <map> | 8 #include <map> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "app/l10n_util.h" | 11 #include "app/l10n_util.h" |
| 12 #include "app/resource_bundle.h" | 12 #include "app/resource_bundle.h" |
| 13 #include "base/i18n/rtl.h" | 13 #include "base/i18n/rtl.h" |
| 14 #include "base/rand_util.h" | 14 #include "base/rand_util.h" |
| 15 #include "base/time.h" | 15 #include "base/time.h" |
| (...skipping 409 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 425 } // if (search_engine_choices.size() > 0) | 425 } // if (search_engine_choices.size() > 0) |
| 426 } | 426 } |
| 427 | 427 |
| 428 AccessibilityTypes::Role FirstRunSearchEngineView::GetAccessibleRole() { | 428 AccessibilityTypes::Role FirstRunSearchEngineView::GetAccessibleRole() { |
| 429 return AccessibilityTypes::ROLE_ALERT; | 429 return AccessibilityTypes::ROLE_ALERT; |
| 430 } | 430 } |
| 431 | 431 |
| 432 std::wstring FirstRunSearchEngineView::GetWindowTitle() const { | 432 std::wstring FirstRunSearchEngineView::GetWindowTitle() const { |
| 433 return UTF16ToWide(l10n_util::GetStringUTF16(IDS_FIRSTRUN_DLG_TITLE)); | 433 return UTF16ToWide(l10n_util::GetStringUTF16(IDS_FIRSTRUN_DLG_TITLE)); |
| 434 } | 434 } |
| OLD | NEW |