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

Unified Diff: printing/printed_document.cc

Issue 12217101: Replace FilePath with base::FilePath in some more top level directories. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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/pdf_metafile_skia.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/printed_document.cc
diff --git a/printing/printed_document.cc b/printing/printed_document.cc
index 76860550e4e582f0edf9d68d0fe835bd0ca63424..32a88097b531fb161219d6e9ab3b170ff5d02a60 100644
--- a/printing/printed_document.cc
+++ b/printing/printed_document.cc
@@ -34,7 +34,7 @@ struct PrintDebugDumpPath {
}
bool enabled;
- FilePath debug_dump_path;
+ base::FilePath debug_dump_path;
};
base::LazyInstance<PrintDebugDumpPath> g_debug_dump_info =
@@ -191,12 +191,13 @@ void PrintedDocument::DebugDump(const PrintedPage& page) {
#endif // OS_WIN
}
-void PrintedDocument::set_debug_dump_path(const FilePath& debug_dump_path) {
+void PrintedDocument::set_debug_dump_path(
+ const base::FilePath& debug_dump_path) {
g_debug_dump_info.Get().enabled = !debug_dump_path.empty();
g_debug_dump_info.Get().debug_dump_path = debug_dump_path;
}
-const FilePath& PrintedDocument::debug_dump_path() {
+const base::FilePath& PrintedDocument::debug_dump_path() {
return g_debug_dump_info.Get().debug_dump_path;
}
« no previous file with comments | « printing/pdf_metafile_skia.cc ('k') | printing/printing_context_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698