aboutsummaryrefslogtreecommitdiff
path: root/src/common/windows/pe_source_line_writer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/windows/pe_source_line_writer.h')
-rw-r--r--src/common/windows/pe_source_line_writer.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/common/windows/pe_source_line_writer.h b/src/common/windows/pe_source_line_writer.h
index a3748145..324663ba 100644
--- a/src/common/windows/pe_source_line_writer.h
+++ b/src/common/windows/pe_source_line_writer.h
@@ -31,7 +31,6 @@
#include <string>
-#include "common/basictypes.h"
#include "common/windows/module_info.h"
namespace google_breakpad {
@@ -44,6 +43,8 @@ using std::wstring;
class PESourceLineWriter {
public:
explicit PESourceLineWriter(const wstring& pe_file);
+ PESourceLineWriter(const PESourceLineWriter&) = delete;
+ void operator=(const PESourceLineWriter&) = delete;
~PESourceLineWriter();
// Writes Breakpad symbols from the pe file to |symbol_file|.
@@ -58,9 +59,7 @@ public:
bool GetPEInfo(PEModuleInfo* info);
private:
- const wstring pe_file_;
-
- DISALLOW_COPY_AND_ASSIGN(PESourceLineWriter);
+ const wstring pe_file_;
};
} // namespace google_breakpad