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

Unified Diff: ui/app_list/views/app_list_view.cc

Issue 120723006: In Chromium, App Launcher's WM_CLASS is "chromium_app_list". (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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/ui/views/app_list/linux/app_list_service_linux.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/views/app_list_view.cc
diff --git a/ui/app_list/views/app_list_view.cc b/ui/app_list/views/app_list_view.cc
index fc15fc58d2adbfec79f2f7f710b07fcdfe053019..ad4fccdf59b45effd6bd211776b1cd4162c2e428 100644
--- a/ui/app_list/views/app_list_view.cc
+++ b/ui/app_list/views/app_list_view.cc
@@ -58,7 +58,11 @@ const int kArrowOffset = 10;
#if defined(OS_LINUX)
// The WM_CLASS name for the app launcher window on Linux.
-const char* kAppListWMClass = "chrome_app_list";
+#if defined(GOOGLE_CHROME_BUILD)
+const char kAppListWMClass[] = "chrome_app_list";
+#else // CHROMIUM_BUILD
+const char kAppListWMClass[] = "chromium_app_list";
+#endif
#endif
// Determines whether the current environment supports shadows bubble borders.
« no previous file with comments | « chrome/browser/ui/views/app_list/linux/app_list_service_linux.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698