| Index: chrome/browser/ui/webui/print_preview/sticky_settings.h
|
| diff --git a/chrome/browser/ui/webui/print_preview/sticky_settings.h b/chrome/browser/ui/webui/print_preview/sticky_settings.h
|
| index ab3395d9b76aab2ffce6e782c1ec94f4e71e7102..77a4c10745b5cc76daaf58046e9dab2b0091bb49 100644
|
| --- a/chrome/browser/ui/webui/print_preview/sticky_settings.h
|
| +++ b/chrome/browser/ui/webui/print_preview/sticky_settings.h
|
| @@ -11,13 +11,13 @@
|
|
|
| #include "base/memory/scoped_ptr.h"
|
|
|
| -class FilePath;
|
| class PrintPreviewHandlerTest;
|
| class PrefService;
|
| class PrefServiceSyncable;
|
|
|
| namespace base {
|
| class DictionaryValue;
|
| +class FilePath;
|
| }
|
|
|
| namespace printing {
|
| @@ -30,20 +30,20 @@ class StickySettings {
|
| StickySettings();
|
| ~StickySettings();
|
|
|
| - FilePath* save_path();
|
| + base::FilePath* save_path();
|
| std::string* printer_app_state();
|
|
|
| // Stores app state for the last used printer.
|
| void StoreAppState(const std::string& app_state);
|
| // Stores the last path the user used to save to pdf.
|
| - void StoreSavePath(const FilePath& path);
|
| + void StoreSavePath(const base::FilePath& path);
|
|
|
| void SaveInPrefs(PrefService* profile);
|
| void RestoreFromPrefs(PrefService* profile);
|
| static void RegisterUserPrefs(PrefServiceSyncable* prefs);
|
| private:
|
|
|
| - scoped_ptr<FilePath> save_path_;
|
| + scoped_ptr<base::FilePath> save_path_;
|
| scoped_ptr<std::string> printer_app_state_;
|
| };
|
|
|
|
|