diff options
author | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-01 07:19:07 +0000 |
---|---|---|
committer | thestig@chromium.org <thestig@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-10-01 07:19:07 +0000 |
commit | b5fa4ee1544057ed2b329612c4bdaf4369adcb70 (patch) | |
tree | 66a9735103b1930879e4e7a27e504ba5897c97b1 /printing/printed_document.h | |
parent | 5f80e07987d71377e86126d9c8c1a1842455a8cd (diff) | |
download | chromium_src-b5fa4ee1544057ed2b329612c4bdaf4369adcb70.zip chromium_src-b5fa4ee1544057ed2b329612c4bdaf4369adcb70.tar.gz chromium_src-b5fa4ee1544057ed2b329612c4bdaf4369adcb70.tar.bz2 |
Cleanup: Use base namespace in printing/.
Review URL: https://codereview.chromium.org/24989002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@226174 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'printing/printed_document.h')
-rw-r--r-- | printing/printed_document.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/printing/printed_document.h b/printing/printed_document.h index 4ebcfbf..b8af4bb 100644 --- a/printing/printed_document.h +++ b/printing/printed_document.h @@ -90,7 +90,7 @@ class PRINTING_EXPORT PrintedDocument // Getters. All these items are immutable hence thread-safe. const PrintSettings& settings() const { return immutable_.settings_; } - const string16& name() const { return immutable_.name_; } + const base::string16& name() const { return immutable_.name_; } int cookie() const { return immutable_.cookie_; } // Sets a path where to dump printing output files for debugging. If never set @@ -149,7 +149,7 @@ class PRINTING_EXPORT PrintedDocument base::MessageLoop* source_message_loop_; // Document name. Immutable. - string16 name_; + base::string16 name_; // Cookie to uniquely identify this document. It is used to make sure that a // PrintedPage is correctly belonging to the PrintedDocument. Since |