| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ | 5 #ifndef CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ |
| 6 #define CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ | 6 #define CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 | 10 |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/basictypes.h" | 14 #include "base/basictypes.h" |
| 15 #include "base/file_path.h" | 15 #include "base/file_path.h" |
| 16 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 17 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 18 #include "base/process.h" | 18 #include "base/process.h" |
| 19 #include "base/task.h" | |
| 20 #include "ipc/ipc_channel.h" | 19 #include "ipc/ipc_channel.h" |
| 21 #include "content/public/common/child_process_host_delegate.h" | 20 #include "content/public/common/child_process_host_delegate.h" |
| 22 #include "printing/pdf_render_settings.h" | 21 #include "printing/pdf_render_settings.h" |
| 23 | 22 |
| 24 class CommandLine; | 23 class CommandLine; |
| 25 class ScopedTempDir; | 24 class ScopedTempDir; |
| 26 | 25 |
| 27 namespace base { | 26 namespace base { |
| 28 class MessageLoopProxy; | 27 class MessageLoopProxy; |
| 29 } // namespace base | 28 } // namespace base |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 bool waiting_for_reply_; | 145 bool waiting_for_reply_; |
| 147 // The path to the temp file where the metafile will be written to. | 146 // The path to the temp file where the metafile will be written to. |
| 148 FilePath metafile_path_; | 147 FilePath metafile_path_; |
| 149 // The temporary folder created for the metafile. | 148 // The temporary folder created for the metafile. |
| 150 scoped_ptr<ScopedTempDir> scratch_metafile_dir_; | 149 scoped_ptr<ScopedTempDir> scratch_metafile_dir_; |
| 151 | 150 |
| 152 DISALLOW_COPY_AND_ASSIGN(ServiceUtilityProcessHost); | 151 DISALLOW_COPY_AND_ASSIGN(ServiceUtilityProcessHost); |
| 153 }; | 152 }; |
| 154 | 153 |
| 155 #endif // CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ | 154 #endif // CHROME_SERVICE_SERVICE_UTILITY_PROCESS_HOST_H_ |
| OLD | NEW |