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

Unified Diff: chrome/browser/app_menu_model.cc

Issue 548221: Added Sign out for Chromium OS. (Closed)
Patch Set: Merge fallout Created 10 years, 10 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/app/generated_resources.grd ('k') | chrome/browser/defaults.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/app_menu_model.cc
diff --git a/chrome/browser/app_menu_model.cc b/chrome/browser/app_menu_model.cc
index 8a9bc5abbb5960d69ad99ce82e36fa9a237372d1..93d3a4385578cedaecf8298dca571a2b6347a466 100644
--- a/chrome/browser/app_menu_model.cc
+++ b/chrome/browser/app_menu_model.cc
@@ -87,7 +87,11 @@ void AppMenuModel::Build() {
AddItemWithStringId(IDC_HELP_PAGE, IDS_HELP_PAGE);
if (browser_defaults::kShowExitMenuItem) {
AddSeparator();
+#if defined(OS_CHROMEOS)
+ AddItemWithStringId(IDC_EXIT, IDS_SIGN_OUT);
+#else
AddItemWithStringId(IDC_EXIT, IDS_EXIT);
+#endif
}
}
« no previous file with comments | « chrome/app/generated_resources.grd ('k') | chrome/browser/defaults.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698