Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(6471)

Unified Diff: chrome/browser/dom_ui/ntp_resource_cache.cc

Issue 2832014: NTP: Add ability to uninstall apps from the ntp.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/dom_ui/app_launcher_handler.cc ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/dom_ui/ntp_resource_cache.cc
===================================================================
--- chrome/browser/dom_ui/ntp_resource_cache.cc (revision 50261)
+++ chrome/browser/dom_ui/ntp_resource_cache.cc (working copy)
@@ -286,6 +286,12 @@
localized_strings.SetString(L"tips",
l10n_util::GetString(IDS_NEW_TAB_TIPS));
localized_strings.SetString(L"close", l10n_util::GetString(IDS_CLOSE));
+ localized_strings.SetString(L"appsettings",
+ l10n_util::GetString(IDS_NEW_TAB_APP_SETTINGS));
+ localized_strings.SetString(L"appuninstall",
+ l10n_util::GetString(IDS_NEW_TAB_APP_UNINSTALL));
+ localized_strings.SetString(L"appoptions",
+ l10n_util::GetString(IDS_NEW_TAB_APP_OPTIONS));
// Don't initiate the sync related message passing with the page if the sync
// code is not present.
@@ -301,6 +307,11 @@
Animation::ShouldRenderRichAnimation() ? "true" : "false";
localized_strings.SetString(L"anim", anim);
+ const CommandLine* command_line = CommandLine::ForCurrentProcess();
+ bool has_3d =
+ command_line->HasSwitch(switches::kEnableAcceleratedCompositing);
+ localized_strings.SetString(L"has_3d", has_3d ? "true" : "false");
+
// Pass the shown_sections pref early so that we can prevent flicker.
ShownSectionsHandler::SetFirstAppLauncherRunPref(profile_->GetPrefs());
const int shown_sections = profile_->GetPrefs()->GetInteger(
« no previous file with comments | « chrome/browser/dom_ui/app_launcher_handler.cc ('k') | chrome/browser/resources/new_new_tab.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698