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

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

Issue 1354703002: Delete dead code related to the removed helper apps. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove verify_no_objc.sh as well 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
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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 FPL("chrome"); 110 FPL("chrome");
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
121 const char* const kHelperFlavorSuffixes[] = {
122 NULL
123 };
124 #endif // OS_MACOSX 120 #endif // OS_MACOSX
125 121
126 #if defined(OS_WIN) 122 #if defined(OS_WIN)
127 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll"); 123 const base::FilePath::CharType kBrowserResourcesDll[] = FPL("chrome.dll");
128 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll"); 124 const base::FilePath::CharType kMetroDriverDll[] = FPL("metro_driver.dll");
129 const base::FilePath::CharType kStatusTrayWindowClass[] = 125 const base::FilePath::CharType kStatusTrayWindowClass[] =
130 FPL("Chrome_StatusTrayWindow"); 126 FPL("Chrome_StatusTrayWindow");
131 #endif // defined(OS_WIN) 127 #endif // defined(OS_WIN)
132 128
133 const char kInitialProfile[] = "Default"; 129 const char kInitialProfile[] = "Default";
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 // user can select for different file types. 230 // user can select for different file types.
235 // {2676A9A2-D919-4FEE-9187-152100393AB2} 231 // {2676A9A2-D919-4FEE-9187-152100393AB2}
236 const char kApplicationClientIDStringForAVScanning[] = 232 const char kApplicationClientIDStringForAVScanning[] =
237 "2676A9A2-D919-4FEE-9187-152100393AB2"; 233 "2676A9A2-D919-4FEE-9187-152100393AB2";
238 234
239 const size_t kMaxMetaTagAttributeLength = 2000; 235 const size_t kMaxMetaTagAttributeLength = 2000;
240 236
241 } // namespace chrome 237 } // namespace chrome
242 238
243 #undef FPL 239 #undef FPL
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698