Index: chrome/installer/setup/google_chrome_constants.cc |
diff --git a/chrome/installer/setup/google_chrome_constants.cc b/chrome/installer/setup/google_chrome_constants.cc |
new file mode 100644 |
index 0000000000000000000000000000000000000000..bcbbf83b734b8d26b11a2eb9a9a82bd1cbb32f02 |
--- /dev/null |
+++ b/chrome/installer/setup/google_chrome_constants.cc |
@@ -0,0 +1,24 @@ |
+// Copyright 2016 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#include "chrome/install_static/install_modes.h" |
+#include "chrome/installer/setup/brand_constants.h" |
+ |
+const BrandConstants kBrandConstants[] = { |
+ { |
+ install_static::STABLE_INDEX, |
+ "", // No install switch for the primary install mode. |
+ L"", // No logo suffix for the primary install mode. |
+ true, // The app launcher was supported for Google Chrome. |
+ }, |
+ { |
+ install_static::CANARY_INDEX, |
+ "chrome-sxs", |
+ L"Canary", |
+ false, // The app launcher was never supported for SxS/canary. |
+ }, |
+}; |
+ |
+static_assert(_countof(kBrandConstants) == install_static::NUM_INSTALL_MODES, |
+ "Imbalance between kBrandConstants and InstallConstantIndex"); |