diff options
Diffstat (limited to 'chrome/service')
-rw-r--r-- | chrome/service/cloud_print/job_status_updater.h | 2 | ||||
-rw-r--r-- | chrome/service/cloud_print/print_system.h | 5 | ||||
-rw-r--r-- | chrome/service/service_child_process_host.cc | 3 | ||||
-rw-r--r-- | chrome/service/service_utility_process_host.h | 5 |
4 files changed, 8 insertions, 7 deletions
diff --git a/chrome/service/cloud_print/job_status_updater.h b/chrome/service/cloud_print/job_status_updater.h index c03b04e..4fa07eb 100644 --- a/chrome/service/cloud_print/job_status_updater.h +++ b/chrome/service/cloud_print/job_status_updater.h @@ -8,7 +8,6 @@ #include <string> -#include "base/file_path.h" #include "base/ref_counted.h" #include "base/scoped_ptr.h" #include "base/thread.h" @@ -73,4 +72,3 @@ class JobStatusUpdater : public base::RefCountedThreadSafe<JobStatusUpdater>, typedef JobStatusUpdater::Delegate JobStatusUpdaterDelegate; #endif // CHROME_SERVICE_CLOUD_PRINT_JOB_STATUS_UPDATER_H_ - diff --git a/chrome/service/cloud_print/print_system.h b/chrome/service/cloud_print/print_system.h index 586e672..b0e287d 100644 --- a/chrome/service/cloud_print/print_system.h +++ b/chrome/service/cloud_print/print_system.h @@ -10,9 +10,10 @@ #include <string> #include <vector> -#include "base/file_path.h" #include "base/ref_counted.h" -#include "base/values.h" + +class DictionaryValue; +class FilePath; // This is the interface for platform-specific code for cloud print namespace cloud_print { diff --git a/chrome/service/service_child_process_host.cc b/chrome/service/service_child_process_host.cc index cea04fe..c7cbea2e 100644 --- a/chrome/service/service_child_process_host.cc +++ b/chrome/service/service_child_process_host.cc @@ -7,7 +7,9 @@ #include "base/logging.h" #include "base/process_util.h" #include "chrome/common/result_codes.h" + #if defined(OS_WIN) +#include "base/file_path.h" #include "chrome/common/sandbox_policy.h" #endif // defined(OS_WIN) @@ -30,4 +32,3 @@ bool ServiceChildProcessHost::Launch(CommandLine* cmd_line) { return (handle() != base::kNullProcessHandle); #endif // !defined(OS_WIN) } - diff --git a/chrome/service/service_utility_process_host.h b/chrome/service/service_utility_process_host.h index 2b964eb..c069426 100644 --- a/chrome/service/service_utility_process_host.h +++ b/chrome/service/service_utility_process_host.h @@ -6,6 +6,8 @@ #define CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ #pragma once +#include "build/build_config.h" + #if defined(OS_WIN) #include <windows.h> #endif // defined(OS_WIN) @@ -13,7 +15,6 @@ #include <vector> #include "base/basictypes.h" -#include "base/file_path.h" #include "base/ref_counted.h" #include "base/task.h" #include "ipc/ipc_channel.h" @@ -21,6 +22,7 @@ #include "printing/native_metafile.h" class CommandLine; +class FilePath; namespace base { class MessageLoopProxy; @@ -118,4 +120,3 @@ class ServiceUtilityProcessHost : public ServiceChildProcessHost { }; #endif // CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ - |