OLD | NEW |
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/url_constants.h" | 5 #include "chrome/common/url_constants.h" |
6 | 6 |
7 #include "googleurl/src/url_util.h" | 7 #include "googleurl/src/url_util.h" |
8 | 8 |
9 namespace chrome { | 9 namespace chrome { |
10 | 10 |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
372 "https://support.google.com/chrome/?p=ib_translation_bar"; | 372 "https://support.google.com/chrome/?p=ib_translation_bar"; |
373 #endif | 373 #endif |
374 | 374 |
375 const char kOmniboxLearnMoreURL[] = | 375 const char kOmniboxLearnMoreURL[] = |
376 #if defined(OS_CHROMEOS) | 376 #if defined(OS_CHROMEOS) |
377 "https://support.google.com/chromeos/?p=settings_omnibox"; | 377 "https://support.google.com/chromeos/?p=settings_omnibox"; |
378 #else | 378 #else |
379 "https://support.google.com/chrome/?p=settings_omnibox"; | 379 "https://support.google.com/chrome/?p=settings_omnibox"; |
380 #endif | 380 #endif |
381 | 381 |
382 const char kInstantLearnMoreURL[] = | |
383 #if defined(OS_CHROMEOS) | |
384 "https://support.google.com/chromeos/?p=settings_instant_policy"; | |
385 #else | |
386 "https://support.google.com/chrome/?p=settings_instant_policy"; | |
387 #endif | |
388 | |
389 const char kPageInfoHelpCenterURL[] = | 382 const char kPageInfoHelpCenterURL[] = |
390 #if defined(OS_CHROMEOS) | 383 #if defined(OS_CHROMEOS) |
391 "https://support.google.com/chromeos/?p=ui_security_indicator"; | 384 "https://support.google.com/chromeos/?p=ui_security_indicator"; |
392 #else | 385 #else |
393 "https://support.google.com/chrome/?p=ui_security_indicator"; | 386 "https://support.google.com/chrome/?p=ui_security_indicator"; |
394 #endif | 387 #endif |
395 | 388 |
396 const char kCrashReasonURL[] = | 389 const char kCrashReasonURL[] = |
397 #if defined(OS_CHROMEOS) | 390 #if defined(OS_CHROMEOS) |
398 "https://support.google.com/chromeos/?p=e_awsnap"; | 391 "https://support.google.com/chromeos/?p=e_awsnap"; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
520 const char kChromeSearchSuggestionHost[] = "suggestion"; | 513 const char kChromeSearchSuggestionHost[] = "suggestion"; |
521 | 514 |
522 // Google SafeSearch query parameters. | 515 // Google SafeSearch query parameters. |
523 const char kSafeSearchSafeParameter[] = "safe=active"; | 516 const char kSafeSearchSafeParameter[] = "safe=active"; |
524 const char kSafeSearchSsuiParameter[] = "ssui=on"; | 517 const char kSafeSearchSsuiParameter[] = "ssui=on"; |
525 | 518 |
526 const char kMediaAccessLearnMoreUrl[] = | 519 const char kMediaAccessLearnMoreUrl[] = |
527 "https://support.google.com/chrome/?p=ib_access_cam_mic"; | 520 "https://support.google.com/chrome/?p=ib_access_cam_mic"; |
528 | 521 |
529 } // namespace chrome | 522 } // namespace chrome |
OLD | NEW |