diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-18 16:54:58 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-18 16:54:58 +0000 |
commit | 0ad1d2d6eb6f1e4edff72dabb8e2b2f9ba051f88 (patch) | |
tree | 34d232d10e6415100d5b660317c23a14e157ba83 /chrome/service/cloud_print/print_system_cups.cc | |
parent | dac096590a0f00f124eb71b12ff6a32cee439fca (diff) | |
download | chromium_src-0ad1d2d6eb6f1e4edff72dabb8e2b2f9ba051f88.zip chromium_src-0ad1d2d6eb6f1e4edff72dabb8e2b2f9ba051f88.tar.gz chromium_src-0ad1d2d6eb6f1e4edff72dabb8e2b2f9ba051f88.tar.bz2 |
base: Put md5.* into base namespace.
BUG=89274
TEST=None
R=evan@chromium.org
Review URL: http://codereview.chromium.org/7395021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92861 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/service/cloud_print/print_system_cups.cc')
-rw-r--r-- | chrome/service/cloud_print/print_system_cups.cc | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/chrome/service/cloud_print/print_system_cups.cc b/chrome/service/cloud_print/print_system_cups.cc index 22ebdfc..3387334 100644 --- a/chrome/service/cloud_print/print_system_cups.cc +++ b/chrome/service/cloud_print/print_system_cups.cc @@ -23,8 +23,8 @@ #include "base/string_number_conversions.h" #include "base/string_util.h" #include "base/task.h" -#include "base/values.h" #include "base/utf_string_conversions.h" +#include "base/values.h" #include "chrome/service/cloud_print/cloud_print_consts.h" #include "chrome/service/cloud_print/cloud_print_helpers.h" #include "googleurl/src/gurl.h" @@ -224,7 +224,7 @@ class PrintServerWatcherCUPS for (size_t i = 0; i < printers.size(); i++) to_hash += printers[i]; - return MD5String(to_hash); + return base::MD5String(to_hash); } scoped_refptr<PrintSystemCUPS> print_system_; @@ -329,7 +329,7 @@ class PrinterWatcherCUPS to_hash += caps.printer_defaults; to_hash += caps.defaults_mime_type; - return MD5String(to_hash); + return base::MD5String(to_hash); } std::string printer_name_; @@ -818,4 +818,3 @@ void PrintSystemCUPS::RunCapsCallback( } } // namespace cloud_print - |