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

Side by Side Diff: chrome/common/chrome_constants.cc

Issue 242025: Cleaning up after the initial Chrome Frame commit. Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « build/common.gypi ('k') | chrome/installer/installer.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/common/chrome_constants.h" 5 #include "chrome/common/chrome_constants.h"
6 6
7 #include "base/file_path.h" 7 #include "base/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 25 matching lines...) Expand all
36 #elif defined(OS_LINUX) 36 #elif defined(OS_LINUX)
37 const wchar_t kBrowserProcessExecutablePath[] = L"chrome"; 37 const wchar_t kBrowserProcessExecutablePath[] = L"chrome";
38 const wchar_t kHelperProcessExecutablePath[] = L"chrome"; 38 const wchar_t kHelperProcessExecutablePath[] = L"chrome";
39 #elif defined(OS_MACOSX) 39 #elif defined(OS_MACOSX)
40 const wchar_t kBrowserProcessExecutablePath[] = 40 const wchar_t kBrowserProcessExecutablePath[] =
41 PRODUCT_STRING L".app/Contents/MacOS/" PRODUCT_STRING; 41 PRODUCT_STRING L".app/Contents/MacOS/" PRODUCT_STRING;
42 const wchar_t kHelperProcessExecutablePath[] = 42 const wchar_t kHelperProcessExecutablePath[] =
43 PRODUCT_STRING L".app/Contents/Resources/" 43 PRODUCT_STRING L".app/Contents/Resources/"
44 PRODUCT_STRING L" Helper.app/Contents/MacOS/" PRODUCT_STRING L" Helper"; 44 PRODUCT_STRING L" Helper.app/Contents/MacOS/" PRODUCT_STRING L" Helper";
45 #endif // OS_* 45 #endif // OS_*
46 #if defined(CHROME_EXP_BUILD) 46 #if defined(CHROME_FRAME_BUILD)
47 const wchar_t kBrowserAppName[] = L"ChromeExp"; 47 const wchar_t kBrowserAppName[] = L"ChromeFrame";
48 const char kStatsFilename[] = "ChromeExpStats2"; 48 const char kStatsFilename[] = "ChromeFrameStats2";
49 #elif defined(GOOGLE_CHROME_BUILD) 49 #elif defined(GOOGLE_CHROME_BUILD)
50 const wchar_t kBrowserAppName[] = L"Chrome"; 50 const wchar_t kBrowserAppName[] = L"Chrome";
51 const char kStatsFilename[] = "ChromeStats2"; 51 const char kStatsFilename[] = "ChromeStats2";
52 #else 52 #else
53 const wchar_t kBrowserAppName[] = L"Chromium"; 53 const wchar_t kBrowserAppName[] = L"Chromium";
54 const char kStatsFilename[] = "ChromiumStats2"; 54 const char kStatsFilename[] = "ChromiumStats2";
55 #endif 55 #endif
56 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow"; 56 const wchar_t kMessageWindowClass[] = L"Chrome_MessageWindow";
57 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt"; 57 const wchar_t kCrashReportLog[] = L"Reported Crashes.txt";
58 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll"; 58 const wchar_t kTestingInterfaceDLL[] = L"testing_interface.dll";
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 // because it is useful for testing and not hazardous by itself. 106 // because it is useful for testing and not hazardous by itself.
107 #ifndef NDEBUG 107 #ifndef NDEBUG
108 const bool kRecordModeEnabled = true; 108 const bool kRecordModeEnabled = true;
109 #else 109 #else
110 const bool kRecordModeEnabled = false; 110 const bool kRecordModeEnabled = false;
111 #endif 111 #endif
112 112
113 } // namespace chrome 113 } // namespace chrome
114 114
115 #undef FPL 115 #undef FPL
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | chrome/installer/installer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698