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

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

Issue 22577010: Printing: Add a basic printing mode without print preview and cloud print. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 #include "chrome/common/url_constants.h" 5 #include "chrome/common/url_constants.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "content/public/common/url_constants.h" 10 #include "content/public/common/url_constants.h"
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
577 #endif 577 #endif
578 #if !defined(DISABLE_NACL) 578 #if !defined(DISABLE_NACL)
579 kChromeUINaClHost, 579 kChromeUINaClHost,
580 #endif 580 #endif
581 #if defined(ENABLE_CONFIGURATION_POLICY) 581 #if defined(ENABLE_CONFIGURATION_POLICY)
582 kChromeUIPolicyHost, 582 kChromeUIPolicyHost,
583 #endif 583 #endif
584 #if defined(ENABLE_EXTENSIONS) 584 #if defined(ENABLE_EXTENSIONS)
585 kChromeUIExtensionsHost, 585 kChromeUIExtensionsHost,
586 #endif 586 #endif
587 #if defined(ENABLE_PRINTING) 587 #if defined(ENABLE_FULL_PRINTING)
588 kChromeUIPrintHost, 588 kChromeUIPrintHost,
589 #endif 589 #endif
590 content::kChromeUIAccessibilityHost, 590 content::kChromeUIAccessibilityHost,
591 content::kChromeUIAppCacheInternalsHost, 591 content::kChromeUIAppCacheInternalsHost,
592 content::kChromeUIBlobInternalsHost, 592 content::kChromeUIBlobInternalsHost,
593 content::kChromeUIGpuHost, 593 content::kChromeUIGpuHost,
594 content::kChromeUIHistogramHost, 594 content::kChromeUIHistogramHost,
595 content::kChromeUIIndexedDBInternalsHost, 595 content::kChromeUIIndexedDBInternalsHost,
596 content::kChromeUIMediaInternalsHost, 596 content::kChromeUIMediaInternalsHost,
597 content::kChromeUINetworkViewCacheHost, 597 content::kChromeUINetworkViewCacheHost,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
631 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/"; 631 const char kChromeSearchMostVisitedUrl[] = "chrome-search://most-visited/";
632 632
633 // Google SafeSearch query parameters. 633 // Google SafeSearch query parameters.
634 const char kSafeSearchSafeParameter[] = "safe=active"; 634 const char kSafeSearchSafeParameter[] = "safe=active";
635 const char kSafeSearchSsuiParameter[] = "ssui=on"; 635 const char kSafeSearchSsuiParameter[] = "ssui=on";
636 636
637 const char kMediaAccessLearnMoreUrl[] = 637 const char kMediaAccessLearnMoreUrl[] =
638 "https://support.google.com/chrome/?p=ib_access_cam_mic"; 638 "https://support.google.com/chrome/?p=ib_access_cam_mic";
639 639
640 } // namespace chrome 640 } // namespace chrome
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698