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

Unified Diff: printing/print_settings.h

Issue 24989002: Cleanup: Use base namespace in printing/. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « printing/print_dialog_gtk_interface.h ('k') | printing/print_settings.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/print_settings.h
===================================================================
--- printing/print_settings.h (revision 224775)
+++ printing/print_settings.h (working copy)
@@ -48,14 +48,14 @@
bool Equals(const PrintSettings& rhs) const;
void set_landscape(bool landscape) { landscape_ = landscape; }
- void set_printer_name(const string16& printer_name) {
+ void set_printer_name(const base::string16& printer_name) {
printer_name_ = printer_name;
}
- const string16& printer_name() const { return printer_name_; }
- void set_device_name(const string16& device_name) {
+ const base::string16& printer_name() const { return printer_name_; }
+ void set_device_name(const base::string16& device_name) {
device_name_ = device_name;
}
- const string16& device_name() const { return device_name_; }
+ const base::string16& device_name() const { return device_name_; }
void set_dpi(int dpi) { dpi_ = dpi; }
int dpi() const { return dpi_; }
void set_supports_alpha_blend(bool supports_alpha_blend) {
@@ -109,9 +109,9 @@
void SetOrientation(bool landscape);
// Strings to be printed as headers and footers if requested by the user.
- string16 date;
- string16 title;
- string16 url;
+ base::string16 date;
+ base::string16 title;
+ base::string16 url;
// True if the user wants headers and footers to be displayed.
bool display_header_footer;
@@ -124,10 +124,10 @@
// Settings that can't be changed without side-effects.
// Printer name as shown to the user.
- string16 printer_name_;
+ base::string16 printer_name_;
// Printer device name as opened by the OS.
- string16 device_name_;
+ base::string16 device_name_;
// Page setup in device units.
PageSetup page_setup_device_units_;
« no previous file with comments | « printing/print_dialog_gtk_interface.h ('k') | printing/print_settings.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698