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

Side by Side Diff: courgette/patch_generator_x86_32.h

Issue 1961963003: Move //courgette/third_party to subfolder. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixes according to comments Created 4 years, 7 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
« no previous file with comments | « courgette/ensemble_create.cc ('k') | courgette/simple_delta.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 // This is the transformation and adjustment for all executables. 5 // This is the transformation and adjustment for all executables.
6 // The executable type is determined by ParseDetectedExecutable function. 6 // The executable type is determined by ParseDetectedExecutable function.
7 7
8 #ifndef COURGETTE_WIN32_X86_GENERATOR_H_ 8 #ifndef COURGETTE_WIN32_X86_GENERATOR_H_
9 #define COURGETTE_WIN32_X86_GENERATOR_H_ 9 #define COURGETTE_WIN32_X86_GENERATOR_H_
10 10
11 #include <memory> 11 #include <memory>
12 12
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/macros.h" 14 #include "base/macros.h"
15 #include "courgette/assembly_program.h" 15 #include "courgette/assembly_program.h"
16 #include "courgette/ensemble.h" 16 #include "courgette/ensemble.h"
17 #include "courgette/patcher_x86_32.h"
17 #include "courgette/program_detector.h" 18 #include "courgette/program_detector.h"
18 19
19 namespace courgette { 20 namespace courgette {
20 21
21 class PatchGeneratorX86_32 : public TransformationPatchGenerator { 22 class PatchGeneratorX86_32 : public TransformationPatchGenerator {
22 public: 23 public:
23 PatchGeneratorX86_32(Element* old_element, 24 PatchGeneratorX86_32(Element* old_element,
24 Element* new_element, 25 Element* new_element,
25 PatcherX86_32* patcher, 26 PatcherX86_32* patcher,
26 ExecutableType kind) 27 ExecutableType kind)
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 virtual ~PatchGeneratorX86_32() { } 126 virtual ~PatchGeneratorX86_32() { }
126 127
127 ExecutableType kind_; 128 ExecutableType kind_;
128 129
129 DISALLOW_COPY_AND_ASSIGN(PatchGeneratorX86_32); 130 DISALLOW_COPY_AND_ASSIGN(PatchGeneratorX86_32);
130 }; 131 };
131 132
132 } // namespace courgette 133 } // namespace courgette
133 134
134 #endif // COURGETTE_WIN32_X86_GENERATOR_H_ 135 #endif // COURGETTE_WIN32_X86_GENERATOR_H_
OLDNEW
« no previous file with comments | « courgette/ensemble_create.cc ('k') | courgette/simple_delta.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698