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_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ |
7 #pragma once | |
8 | 7 |
9 #include <string> | 8 #include <string> |
10 | 9 |
11 #include "base/file_path.h" | 10 #include "base/file_path.h" |
12 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
13 #include "base/scoped_temp_dir.h" | 12 #include "base/scoped_temp_dir.h" |
14 #include "chrome/common/extensions/extension.h" | 13 #include "chrome/common/extensions/extension.h" |
15 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
16 #include "content/public/browser/utility_process_host_client.h" | 15 #include "content/public/browser/utility_process_host_client.h" |
17 | 16 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 extensions::Extension::Location location_; | 224 extensions::Extension::Location location_; |
226 | 225 |
227 // Creation flags to use for the extension. These flags will be used | 226 // Creation flags to use for the extension. These flags will be used |
228 // when calling Extenion::Create() by the crx installer. | 227 // when calling Extenion::Create() by the crx installer. |
229 int creation_flags_; | 228 int creation_flags_; |
230 }; | 229 }; |
231 | 230 |
232 } // namespace extensions | 231 } // namespace extensions |
233 | 232 |
234 #endif // CHROME_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ | 233 #endif // CHROME_BROWSER_EXTENSIONS_SANDBOXED_UNPACKER_H_ |
OLD | NEW |