OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 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 | 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/dom_ui/ntp_resource_cache.h" | 5 #include "chrome/browser/dom_ui/ntp_resource_cache.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "app/animation.h" | 10 #include "app/animation.h" |
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
329 localized_strings.SetString("web_store_url", | 329 localized_strings.SetString("web_store_url", |
330 GetUrlWithLang(GURL(Extension::ChromeStoreLaunchURL()))); | 330 GetUrlWithLang(GURL(Extension::ChromeStoreLaunchURL()))); |
331 localized_strings.SetString("appspromohide", | 331 localized_strings.SetString("appspromohide", |
332 l10n_util::GetStringUTF16(IDS_APPS_PROMO_HIDE)); | 332 l10n_util::GetStringUTF16(IDS_APPS_PROMO_HIDE)); |
333 localized_strings.SetString("appspromoheader", | 333 localized_strings.SetString("appspromoheader", |
334 l10n_util::GetStringUTF16(IDS_APPS_PROMO_HEADER)); | 334 l10n_util::GetStringUTF16(IDS_APPS_PROMO_HEADER)); |
335 localized_strings.SetString("appspromotext1", | 335 localized_strings.SetString("appspromotext1", |
336 l10n_util::GetStringUTF16(IDS_APPS_PROMO_TEXT_1)); | 336 l10n_util::GetStringUTF16(IDS_APPS_PROMO_TEXT_1)); |
337 localized_strings.SetString("appspromotext2", | 337 localized_strings.SetString("appspromotext2", |
338 l10n_util::GetStringUTF16(IDS_APPS_PROMO_TEXT_2)); | 338 l10n_util::GetStringUTF16(IDS_APPS_PROMO_TEXT_2)); |
| 339 #if defined(OS_CHROMEOS) |
| 340 localized_strings.SetString("expandMenu", |
| 341 l10n_util::GetStringUTF16(IDS_NEW_TAB_CLOSE_MENU_EXPAND)); |
| 342 #endif |
339 | 343 |
340 // Don't initiate the sync related message passing with the page if the sync | 344 // Don't initiate the sync related message passing with the page if the sync |
341 // code is not present. | 345 // code is not present. |
342 if (profile_->GetProfileSyncService()) | 346 if (profile_->GetProfileSyncService()) |
343 localized_strings.SetString("syncispresent", "true"); | 347 localized_strings.SetString("syncispresent", "true"); |
344 else | 348 else |
345 localized_strings.SetString("syncispresent", "false"); | 349 localized_strings.SetString("syncispresent", "false"); |
346 | 350 |
347 ChromeURLDataManager::DataSource::SetFontAndTextDirection(&localized_strings); | 351 ChromeURLDataManager::DataSource::SetFontAndTextDirection(&localized_strings); |
348 | 352 |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
543 std::string css_string; | 547 std::string css_string; |
544 css_string = ReplaceStringPlaceholders(new_tab_theme_css, subst, NULL); | 548 css_string = ReplaceStringPlaceholders(new_tab_theme_css, subst, NULL); |
545 css_string = ReplaceStringPlaceholders(css_string, subst2, NULL); | 549 css_string = ReplaceStringPlaceholders(css_string, subst2, NULL); |
546 css_string = ReplaceStringPlaceholders(css_string, subst3, NULL); | 550 css_string = ReplaceStringPlaceholders(css_string, subst3, NULL); |
547 | 551 |
548 new_tab_css_ = new RefCountedBytes; | 552 new_tab_css_ = new RefCountedBytes; |
549 new_tab_css_->data.resize(css_string.size()); | 553 new_tab_css_->data.resize(css_string.size()); |
550 std::copy(css_string.begin(), css_string.end(), | 554 std::copy(css_string.begin(), css_string.end(), |
551 new_tab_css_->data.begin()); | 555 new_tab_css_->data.begin()); |
552 } | 556 } |
OLD | NEW |