Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(330)

Side by Side Diff: components/component_updater/component_patcher_operation.h

Issue 449643002: Componentize component_updater: Move over a bunch of files to the component. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove extensions from component_updater.gypi dependencies, due to introducing cycle Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_PATCHER_OPERATION_H_ 5 #ifndef COMPONENTS_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_
6 #define CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_ 6 #define COMPONENTS_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
11 #include "base/callback.h" 11 #include "base/callback.h"
12 #include "base/compiler_specific.h" 12 #include "base/compiler_specific.h"
13 #include "base/files/file_path.h" 13 #include "base/files/file_path.h"
14 #include "base/memory/ref_counted.h" 14 #include "base/memory/ref_counted.h"
15 #include "chrome/browser/component_updater/component_unpacker.h" 15 #include "components/component_updater/component_unpacker.h"
16 16
17 namespace base { 17 namespace base {
18 class DictionaryValue; 18 class DictionaryValue;
19 } // namespace base 19 } // namespace base
20 20
21 namespace component_updater { 21 namespace component_updater {
22 22
23 extern const char kOp[]; 23 extern const char kOp[];
24 extern const char kBsdiff[]; 24 extern const char kBsdiff[];
25 extern const char kCourgette[]; 25 extern const char kCourgette[];
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpPatch); 175 DISALLOW_COPY_AND_ASSIGN(DeltaUpdateOpPatch);
176 }; 176 };
177 177
178 DeltaUpdateOp* CreateDeltaUpdateOp( 178 DeltaUpdateOp* CreateDeltaUpdateOp(
179 const std::string& operation, 179 const std::string& operation,
180 scoped_refptr<OutOfProcessPatcher> out_of_process_patcher); 180 scoped_refptr<OutOfProcessPatcher> out_of_process_patcher);
181 181
182 } // namespace component_updater 182 } // namespace component_updater
183 183
184 #endif // CHROME_BROWSER_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_ 184 #endif // COMPONENTS_COMPONENT_UPDATER_COMPONENT_PATCHER_OPERATION_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698