OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
279 l10n_util::GetString(IDS_NEW_TAB_SHOW_HIDE_LIST_TOOLTIP)); | 279 l10n_util::GetString(IDS_NEW_TAB_SHOW_HIDE_LIST_TOOLTIP)); |
280 localized_strings.SetString(L"pagedisplaytooltip", | 280 localized_strings.SetString(L"pagedisplaytooltip", |
281 l10n_util::GetString(IDS_NEW_TAB_PAGE_DISPLAY_TOOLTIP)); | 281 l10n_util::GetString(IDS_NEW_TAB_PAGE_DISPLAY_TOOLTIP)); |
282 localized_strings.SetString(L"firstrunnotification", | 282 localized_strings.SetString(L"firstrunnotification", |
283 l10n_util::GetString(IDS_NEW_TAB_FIRST_RUN_NOTIFICATION)); | 283 l10n_util::GetString(IDS_NEW_TAB_FIRST_RUN_NOTIFICATION)); |
284 localized_strings.SetString(L"closefirstrunnotification", | 284 localized_strings.SetString(L"closefirstrunnotification", |
285 l10n_util::GetString(IDS_NEW_TAB_CLOSE_FIRST_RUN_NOTIFICATION)); | 285 l10n_util::GetString(IDS_NEW_TAB_CLOSE_FIRST_RUN_NOTIFICATION)); |
286 localized_strings.SetString(L"tips", | 286 localized_strings.SetString(L"tips", |
287 l10n_util::GetString(IDS_NEW_TAB_TIPS)); | 287 l10n_util::GetString(IDS_NEW_TAB_TIPS)); |
288 localized_strings.SetString(L"close", l10n_util::GetString(IDS_CLOSE)); | 288 localized_strings.SetString(L"close", l10n_util::GetString(IDS_CLOSE)); |
| 289 localized_strings.SetString(L"appsettings", |
| 290 l10n_util::GetString(IDS_NEW_TAB_APP_SETTINGS)); |
| 291 localized_strings.SetString(L"appuninstall", |
| 292 l10n_util::GetString(IDS_NEW_TAB_APP_UNINSTALL)); |
| 293 localized_strings.SetString(L"appoptions", |
| 294 l10n_util::GetString(IDS_NEW_TAB_APP_OPTIONS)); |
289 | 295 |
290 // Don't initiate the sync related message passing with the page if the sync | 296 // Don't initiate the sync related message passing with the page if the sync |
291 // code is not present. | 297 // code is not present. |
292 if (profile_->GetProfileSyncService()) | 298 if (profile_->GetProfileSyncService()) |
293 localized_strings.SetString(L"syncispresent", "true"); | 299 localized_strings.SetString(L"syncispresent", "true"); |
294 else | 300 else |
295 localized_strings.SetString(L"syncispresent", "false"); | 301 localized_strings.SetString(L"syncispresent", "false"); |
296 | 302 |
297 ChromeURLDataManager::DataSource::SetFontAndTextDirection(&localized_strings); | 303 ChromeURLDataManager::DataSource::SetFontAndTextDirection(&localized_strings); |
298 | 304 |
299 // Control fade and resize animations. | 305 // Control fade and resize animations. |
300 std::string anim = | 306 std::string anim = |
301 Animation::ShouldRenderRichAnimation() ? "true" : "false"; | 307 Animation::ShouldRenderRichAnimation() ? "true" : "false"; |
302 localized_strings.SetString(L"anim", anim); | 308 localized_strings.SetString(L"anim", anim); |
303 | 309 |
| 310 const CommandLine* command_line = CommandLine::ForCurrentProcess(); |
| 311 bool has_3d = |
| 312 command_line->HasSwitch(switches::kEnableAcceleratedCompositing); |
| 313 localized_strings.SetString(L"has_3d", has_3d ? "true" : "false"); |
| 314 |
304 // Pass the shown_sections pref early so that we can prevent flicker. | 315 // Pass the shown_sections pref early so that we can prevent flicker. |
305 ShownSectionsHandler::SetFirstAppLauncherRunPref(profile_->GetPrefs()); | 316 ShownSectionsHandler::SetFirstAppLauncherRunPref(profile_->GetPrefs()); |
306 const int shown_sections = profile_->GetPrefs()->GetInteger( | 317 const int shown_sections = profile_->GetPrefs()->GetInteger( |
307 prefs::kNTPShownSections); | 318 prefs::kNTPShownSections); |
308 localized_strings.SetInteger(L"shown_sections", shown_sections); | 319 localized_strings.SetInteger(L"shown_sections", shown_sections); |
309 | 320 |
310 // In case we have the new new tab page enabled we first try to read the file | 321 // In case we have the new new tab page enabled we first try to read the file |
311 // provided on the command line. If that fails we just get the resource from | 322 // provided on the command line. If that fails we just get the resource from |
312 // the resource bundle. | 323 // the resource bundle. |
313 base::StringPiece new_tab_html; | 324 base::StringPiece new_tab_html; |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 // Create the string from our template and the replacements. | 472 // Create the string from our template and the replacements. |
462 const std::string css_string = ReplaceStringPlaceholders( | 473 const std::string css_string = ReplaceStringPlaceholders( |
463 new_tab_theme_css, subst, NULL); | 474 new_tab_theme_css, subst, NULL); |
464 std::string full_css = ReplaceStringPlaceholders(css_string, subst2, NULL); | 475 std::string full_css = ReplaceStringPlaceholders(css_string, subst2, NULL); |
465 | 476 |
466 new_tab_css_ = new RefCountedBytes; | 477 new_tab_css_ = new RefCountedBytes; |
467 new_tab_css_->data.resize(full_css.size()); | 478 new_tab_css_->data.resize(full_css.size()); |
468 std::copy(full_css.begin(), full_css.end(), | 479 std::copy(full_css.begin(), full_css.end(), |
469 new_tab_css_->data.begin()); | 480 new_tab_css_->data.begin()); |
470 } | 481 } |
OLD | NEW |