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

Unified Diff: courgette/ensemble.h

Issue 8166013: Further refactoring, move ImageInfo into Disassembler/DisassemblerWin32X86. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Rebase over other changes, fix nit. Created 9 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « courgette/encoded_program.h ('k') | courgette/ensemble.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: courgette/ensemble.h
diff --git a/courgette/ensemble.h b/courgette/ensemble.h
index e766782822c7897ab4abaf15425c417d8154eb2a..4d26076e2487effb144c4541aacd45c627f7a8e7 100644
--- a/courgette/ensemble.h
+++ b/courgette/ensemble.h
@@ -30,7 +30,6 @@ namespace courgette {
// Forward declarations:
class Ensemble;
-class PEInfo;
// An Element is a region of an Ensemble with an identifyable kind.
//
@@ -38,8 +37,7 @@ class Element {
public:
Element(ExecutableType kind,
Ensemble* ensemble,
- const Region& region,
- PEInfo*info);
+ const Region& region);
virtual ~Element();
@@ -53,14 +51,10 @@ class Element {
// containing Ensemble.
size_t offset_in_ensemble() const;
- // The ImageInfo for this executable
- virtual PEInfo* GetImageInfo() const { return info_; }
-
private:
ExecutableType kind_;
Ensemble* ensemble_;
Region region_;
- PEInfo *info_;
DISALLOW_COPY_AND_ASSIGN(Element);
};
« no previous file with comments | « courgette/encoded_program.h ('k') | courgette/ensemble.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698