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

Unified Diff: printing/image.cc

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/emf_win_unittest.cc ('k') | printing/pdf_metafile_cg_mac_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/image.cc
===================================================================
--- printing/image.cc (revision 105978)
+++ printing/image.cc (working copy)
@@ -4,6 +4,8 @@
#include "printing/image.h"
+#include <algorithm>
+
#include "base/file_util.h"
#include "base/md5.h"
#include "base/string_number_conversions.h"
@@ -146,7 +148,7 @@
bool Image::LoadMetafile(const std::string& data) {
DCHECK(!data.empty());
- printing::NativeMetafile metafile;
+ NativeMetafile metafile;
if (!metafile.InitFromData(data.data(), data.size()))
return false;
return LoadMetafile(metafile);
« no previous file with comments | « printing/emf_win_unittest.cc ('k') | printing/pdf_metafile_cg_mac_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698