| Index: printing/metafile.h
|
| diff --git a/printing/metafile.h b/printing/metafile.h
|
| index a73c850ccf024e39adb6b7e37f1d3e6431136a2e..ca0901b2b65c007cf4c14dab1c3fd3c9b0a56d8f 100644
|
| --- a/printing/metafile.h
|
| +++ b/printing/metafile.h
|
| @@ -18,7 +18,9 @@
|
| #include "base/mac/scoped_cftyperef.h"
|
| #endif
|
|
|
| +namespace base {
|
| class FilePath;
|
| +}
|
|
|
| namespace gfx {
|
| class Rect;
|
| @@ -117,7 +119,7 @@ class PRINTING_EXPORT Metafile {
|
|
|
| // Saves the underlying data to the given file. This function should ONLY be
|
| // called after the metafile is closed. Returns true if writing succeeded.
|
| - virtual bool SaveTo(const FilePath& file_path) const = 0;
|
| + virtual bool SaveTo(const base::FilePath& file_path) const = 0;
|
|
|
| // Returns the bounds of the given page. Pages use a 1-based index.
|
| virtual gfx::Rect GetPageBounds(unsigned int page_number) const = 0;
|
|
|