OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "chrome/browser/dom_ui/clear_browser_data_handler.h" |
| 6 |
| 7 #include "app/l10n_util.h" |
| 8 #include "base/basictypes.h" |
| 9 #include "base/values.h" |
| 10 #include "grit/chromium_strings.h" |
| 11 #include "grit/generated_resources.h" |
| 12 |
| 13 ClearBrowserDataHandler::ClearBrowserDataHandler() { |
| 14 } |
| 15 |
| 16 ClearBrowserDataHandler::~ClearBrowserDataHandler() { |
| 17 } |
| 18 |
| 19 void ClearBrowserDataHandler::GetLocalizedValues( |
| 20 DictionaryValue* localized_strings) { |
| 21 DCHECK(localized_strings); |
| 22 localized_strings->SetString(L"clearBrowsingDataTitle", |
| 23 l10n_util::GetString(IDS_CLEAR_BROWSING_DATA_TITLE)); |
| 24 } |
| 25 |
OLD | NEW |