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

Unified Diff: printing/printing_context_mac.mm

Issue 8334007: Cleanup: Remove unneeded namespaces. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/printing_context.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/printing_context_mac.mm
===================================================================
--- printing/printing_context_mac.mm (revision 105978)
+++ printing/printing_context_mac.mm (working copy)
@@ -123,7 +123,7 @@
return OnError();
}
- bool print_to_cloud = job_settings.HasKey(printing::kSettingCloudPrintId);
+ bool print_to_cloud = job_settings.HasKey(kSettingCloudPrintId);
if (!print_to_pdf && !print_to_cloud && !is_cloud_dialog) {
if (!SetPrinter(device_name))
@@ -251,7 +251,7 @@
static_cast<PMPrintSettings>([print_info_.get() PMPrintSettings]);
std::string color_setting_name;
std::string color_value;
- printing::GetColorModelForMode(color_mode, &color_setting_name, &color_value);
+ GetColorModelForMode(color_mode, &color_setting_name, &color_value);
base::mac::ScopedCFTypeRef<CFStringRef> color_setting(
base::SysUTF8ToCFStringRef(color_setting_name));
base::mac::ScopedCFTypeRef<CFStringRef> output_color(
« no previous file with comments | « printing/printing_context.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698