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

Unified Diff: experimental/visual_studio_plugin/src/elf_reader/elf_reader.h

Issue 10928195: First round of dead file removal (Closed) Base URL: https://github.com/samclegg/nativeclient-sdk.git@master
Patch Set: Created 8 years, 3 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
Index: experimental/visual_studio_plugin/src/elf_reader/elf_reader.h
diff --git a/experimental/visual_studio_plugin/src/elf_reader/elf_reader.h b/experimental/visual_studio_plugin/src/elf_reader/elf_reader.h
deleted file mode 100644
index 18000755d55698897d6c023c547e9e2e1e23e386..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/elf_reader/elf_reader.h
+++ /dev/null
@@ -1,41 +0,0 @@
-// Copyright (c) 2011 The Native Client Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-// This file contains the interface for processing ELF Data
-
-#ifndef ELF_READER_ELF_READER_H_
-#define ELF_READER_ELF_READER_H_
-
-#include "common/types.h"
-
-namespace elf_reader {
-
-// Pure interface class for an ElfReader.
-class IElfReader {
- public:
- // Called at the beginning of processing, with basic information
- // about the ELF file being processed.
- virtual void Init(const char *path,
- void *data,
- uint64_t length,
- uint32_t classSize,
- bool lsb) = 0;
-
- // These functions are called when processing sections headers. The
- // SectionHeaderStart function must return true for this data to
- // be processed.
- virtual bool SectionHeadersStart(uint32_t count) = 0;
- virtual void SectionHeadersEnd() = 0;
- virtual void AddSectionHeader(const char *name,
- void *data,
- uint64_t virt,
- uint32_t type,
- uint32_t flags,
- uint64_t size) = 0;
-};
-
-} // namespace elf_reader
-
-#endif // ELF_READER_ELF_READER_H_
-

Powered by Google App Engine
This is Rietveld 408576698