diff options
Diffstat (limited to 'chrome/common/mac_app_names.h')
-rw-r--r-- | chrome/common/mac_app_names.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/chrome/common/mac_app_names.h b/chrome/common/mac_app_names.h new file mode 100644 index 0000000..645fdca --- /dev/null +++ b/chrome/common/mac_app_names.h @@ -0,0 +1,16 @@ +// Copyright (c) 2009 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. + +#ifndef CHROME_COMMON_MAC_APP_NAMES_H_ +#define CHROME_COMMON_MAC_APP_NAMES_H_ + +#if defined(GOOGLE_CHROME_BUILD) +#define MAC_BROWSER_APP_NAME "Chrome.app" +#elif defined(CHROMIUM_BUILD) +#define MAC_BROWSER_APP_NAME "Chromium.app" +#else +#error "Not sure what the branding is!" +#endif + +#endif // CHROME_COMMON_MAC_APP_NAMES_H_ |