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

Unified Diff: chrome/browser/ui/webui/print_preview/sticky_settings.h

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 11 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
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_;
};
« no previous file with comments | « chrome/browser/ui/webui/print_preview/print_preview_handler.h ('k') | chrome/browser/ui/webui/screenshot_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698