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

Unified Diff: experimental/visual_studio_plugin/src/debug_conn/debug_target.cc

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/debug_conn/debug_target.cc
diff --git a/experimental/visual_studio_plugin/src/debug_conn/debug_target.cc b/experimental/visual_studio_plugin/src/debug_conn/debug_target.cc
deleted file mode 100644
index f89cd553d10a996120e8e5bd3d9b66e7fa028be9..0000000000000000000000000000000000000000
--- a/experimental/visual_studio_plugin/src/debug_conn/debug_target.cc
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * Copyright 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.
- */
-
-#include <string>
-
-
-#include "debug_conn/debug_packet.h"
-#include "debug_conn/debug_pipe.h"
-#include "debug_conn/debug_socket.h"
-#include "debug_conn/debug_stream.h"
-#include "debug_conn/debug_target.h"
-#include "debug_conn/debug_util.h"
-#include "native_client/src/trusted/debug_stub/debug_stub.h"
-
-using namespace nacl_debug_conn;
-using std::string;
-
-
-const char *nacl_debug_conn::RegisterIndexToName(uint32_t regIndex) {
- switch (regIndex) {
- case 0: return "Rax";
- case 1: return "Rbx";
- case 2: return "Rcx";
- case 3: return "Rdx";
- case 4: return "Rsi";
- case 5: return "Rdi";
- case 6: return "Rbp";
- case 7: return "Rsp";
- case 8: return "R8";
- case 9: return "R9";
- case 10:return "R10";
- case 11:return "R11";
- case 12:return "R12";
- case 13:return "R13";
- case 14:return "R14";
- case 15:return "R15";
- case 16:return "Rip";
- case 17:return "EFlags";
- case 18:return "SegCs";
- case 19:return "SegSs";
- case 20:return "SegDs";
- case 21:return "SegEs";
- case 22:return "SegFs";
- case 23:return "SegGs";
- default: return "UNKN";
- }
-}

Powered by Google App Engine
This is Rietveld 408576698