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

Side by Side Diff: chrome/common/url_constants.h

Issue 16206002: Add more support for FreeBSD (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use os_posix and exclude other platforms as needed Created 7 years, 4 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 // Contains constants for known URLs and portions thereof. 5 // Contains constants for known URLs and portions thereof.
6 6
7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_ 7 #ifndef CHROME_COMMON_URL_CONSTANTS_H_
8 #define CHROME_COMMON_URL_CONSTANTS_H_ 8 #define CHROME_COMMON_URL_CONSTANTS_H_
9 9
10 #include <string> 10 #include <string>
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 extern const char kChromeUIVersionHost[]; 219 extern const char kChromeUIVersionHost[];
220 extern const char kChromeUIWorkersHost[]; 220 extern const char kChromeUIWorkersHost[];
221 221
222 extern const char kChromeUIScreenshotPath[]; 222 extern const char kChromeUIScreenshotPath[];
223 extern const char kChromeUIThemePath[]; 223 extern const char kChromeUIThemePath[];
224 224
225 #if defined(OS_ANDROID) 225 #if defined(OS_ANDROID)
226 extern const char kChromeUIWelcomeHost[]; 226 extern const char kChromeUIWelcomeHost[];
227 #endif 227 #endif
228 228
229 #if defined(OS_LINUX) || defined(OS_OPENBSD) 229 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_ANDROID) && \
230 !defined(OS_NACL)
230 extern const char kChromeUILinuxProxyConfigHost[]; 231 extern const char kChromeUILinuxProxyConfigHost[];
231 extern const char kChromeUISandboxHost[]; 232 extern const char kChromeUISandboxHost[];
232 #endif 233 #endif
233 234
234 #if defined(OS_CHROMEOS) 235 #if defined(OS_CHROMEOS)
235 extern const char kChromeUIActivationMessageHost[]; 236 extern const char kChromeUIActivationMessageHost[];
236 extern const char kChromeUIAppLaunchHost[]; 237 extern const char kChromeUIAppLaunchHost[];
237 extern const char kChromeUIBluetoothPairingHost[]; 238 extern const char kChromeUIBluetoothPairingHost[];
238 extern const char kChromeUIChooseMobileNetworkHost[]; 239 extern const char kChromeUIChooseMobileNetworkHost[];
239 extern const char kChromeUICryptohomeHost[]; 240 extern const char kChromeUICryptohomeHost[];
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 // Parameters that get appended to force SafeSearch. 479 // Parameters that get appended to force SafeSearch.
479 extern const char kSafeSearchSafeParameter[]; 480 extern const char kSafeSearchSafeParameter[];
480 extern const char kSafeSearchSsuiParameter[]; 481 extern const char kSafeSearchSsuiParameter[];
481 482
482 // The URL for the "Learn more" link in the media access infobar. 483 // The URL for the "Learn more" link in the media access infobar.
483 extern const char kMediaAccessLearnMoreUrl[]; 484 extern const char kMediaAccessLearnMoreUrl[];
484 485
485 } // namespace chrome 486 } // namespace chrome
486 487
487 #endif // CHROME_COMMON_URL_CONSTANTS_H_ 488 #endif // CHROME_COMMON_URL_CONSTANTS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698