OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 | |
8 | 7 |
9 #include "build/build_config.h" | 8 #include "build/build_config.h" |
10 | 9 |
11 #include <string> | 10 #include <string> |
12 #include <vector> | 11 #include <vector> |
13 | 12 |
14 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
15 #include "base/file_path.h" | 14 #include "base/file_path.h" |
16 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
17 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
(...skipping 128 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 |