diff options
Diffstat (limited to 'cloud_print')
-rw-r--r-- | cloud_print/service/service_state.h | 3 | ||||
-rw-r--r-- | cloud_print/virtual_driver/win/virtual_driver_helpers.h | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/cloud_print/service/service_state.h b/cloud_print/service/service_state.h index ef037bb..2c051f6 100644 --- a/cloud_print/service/service_state.h +++ b/cloud_print/service/service_state.h @@ -7,12 +7,9 @@ #include <string> -#include "base/file_path.h" #include "base/memory/scoped_ptr.h" #include "base/values.h" -class FilePath; - // Manages Cloud Print part of Service State. class ServiceState { public: diff --git a/cloud_print/virtual_driver/win/virtual_driver_helpers.h b/cloud_print/virtual_driver/win/virtual_driver_helpers.h index db59479f..5380a36 100644 --- a/cloud_print/virtual_driver/win/virtual_driver_helpers.h +++ b/cloud_print/virtual_driver/win/virtual_driver_helpers.h @@ -6,9 +6,12 @@ #define CLOUD_PRINT_VIRTUAL_DRIVER_WIN_VIRTUAL_DRIVER_HELPERS_H_ #include <windows.h> + #include "base/string16.h" +namespace base { class FilePath; +} namespace cloud_print { @@ -27,7 +30,7 @@ HRESULT GetLastHResult(); string16 GetPortMonitorDllName(); // Gets the standard install path for "version 3" print drivers. -HRESULT GetPrinterDriverDir(FilePath* path); +HRESULT GetPrinterDriverDir(base::FilePath* path); // Retrieves a string from the string table of the module that contains the // calling code. |