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_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ | 5 #ifndef COMPONENTS_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ |
6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ | 6 #define COMPONENTS_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/json/json_file_value_serializer.h" | 14 #include "base/json/json_file_value_serializer.h" |
15 #include "base/memory/ref_counted.h" | 15 #include "base/memory/ref_counted.h" |
16 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 scoped_refptr<OutOfProcessPatcher> out_of_process_patcher_; | 151 scoped_refptr<OutOfProcessPatcher> out_of_process_patcher_; |
152 Error error_; | 152 Error error_; |
153 int extended_error_; | 153 int extended_error_; |
154 scoped_refptr<base::SequencedTaskRunner> task_runner_; | 154 scoped_refptr<base::SequencedTaskRunner> task_runner_; |
155 | 155 |
156 DISALLOW_COPY_AND_ASSIGN(ComponentUnpacker); | 156 DISALLOW_COPY_AND_ASSIGN(ComponentUnpacker); |
157 }; | 157 }; |
158 | 158 |
159 } // namespace component_updater | 159 } // namespace component_updater |
160 | 160 |
161 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ | 161 #endif // COMPONENTS_COMPONENT_UPDATER_COMPONENT_UNPACKER_H_ |
OLD | NEW |