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

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

Issue 1315163004: Remove the unused helper apps on OS X. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Restore comment per review. Created 5 years, 3 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
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/installer/mac/sign_app.sh.in » ('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) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/files/file_path.h" 7 #include "base/files/file_path.h"
8 8
9 #define FPL FILE_PATH_LITERAL 9 #define FPL FILE_PATH_LITERAL
10 10
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome"); 111 const base::FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome");
112 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] = 112 const base::FilePath::CharType kHelperProcessExecutablePathChromium[] =
113 FPL("chrome"); 113 FPL("chrome");
114 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); 114 const base::FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome");
115 #endif // OS_* 115 #endif // OS_*
116 116
117 #if defined(OS_MACOSX) 117 #if defined(OS_MACOSX)
118 const base::FilePath::CharType kFrameworkName[] = 118 const base::FilePath::CharType kFrameworkName[] =
119 FPL(PRODUCT_STRING " Framework.framework"); 119 FPL(PRODUCT_STRING " Framework.framework");
120 120
121 const char* const kHelperFlavorSuffixes[] = { 121 const char* const kHelperFlavorSuffixes[] = {
Nico 2015/09/01 23:27:16 Can this be removed altogether? Or will this grow
Greg K 2015/09/01 23:50:15 Yes, soon NLV suffix will be added and I would pre
Nico 2015/09/01 23:52:55 Makes sense.
122 FPL("EH"), // Executable heap
123 FPL("NP"), // No PIE
124 NULL 122 NULL
125 }; 123 };
126 #endif // OS_MACOSX 124 #endif // OS_MACOSX
127 125
128 #if defined(OS_WIN) 126 #if defined(OS_WIN)
129 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); 127 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll");
130 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); 128 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll");
131 const base::FilePath::CharType kStatusTrayWindowClass[] = 129 const base::FilePath::CharType kStatusTrayWindowClass[] =
132 FPL("Chrome_StatusTrayWindow"); 130 FPL("Chrome_StatusTrayWindow");
133 #endif // defined(OS_WIN) 131 #endif // defined(OS_WIN)
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 // user can select for different file types. 234 // user can select for different file types.
237 // {2676A9A2-D919-4FEE-9187-152100393AB2} 235 // {2676A9A2-D919-4FEE-9187-152100393AB2}
238 const char kApplicationClientIDStringForAVScanning[] = 236 const char kApplicationClientIDStringForAVScanning[] =
239 "2676A9A2-D919-4FEE-9187-152100393AB2"; 237 "2676A9A2-D919-4FEE-9187-152100393AB2";
240 238
241 const size_t kMaxMetaTagAttributeLength = 2000; 239 const size_t kMaxMetaTagAttributeLength = 2000;
242 240
243 } // namespace chrome 241 } // namespace chrome
244 242
245 #undef FPL 243 #undef FPL
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | chrome/installer/mac/sign_app.sh.in » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698