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

Unified Diff: experimental/linux_debug_server/debugger/core/debuggee_thread.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/linux_debug_server/debugger/core/debuggee_thread.h
diff --git a/experimental/linux_debug_server/debugger/core/debuggee_thread.h b/experimental/linux_debug_server/debugger/core/debuggee_thread.h
deleted file mode 100755
index 6e54a43287dcba030eab740ef9284d663eab4f96..0000000000000000000000000000000000000000
--- a/experimental/linux_debug_server/debugger/core/debuggee_thread.h
+++ /dev/null
@@ -1,44 +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.
-#ifndef DEBUGGER_CORE_DEBUGGEE_THREAD_H_
-#define DEBUGGER_CORE_DEBUGGEE_THREAD_H_
-
-#include "debugger/core/debug_event.h"
-
-namespace debug {
-class DebugAPI;
-class DebugEvent;
-
-/// This class represents a NaClApp thread in the debugged process.
-
-class DebuggeeThread {
- public:
- /// Creates a DebuggeeThread object with specified thread |id|,
- DebuggeeThread(int id, DebugAPI* debug_api);
-
- int id() const { return id_; }
- ProcessState state() const { return state_; }
- DebugEvent last_debug_event() const { return last_debug_event_; }
-
- void OnDebugEvent(const DebugEvent& debug_event);
-
- /// Allows thread execution to continue (i.e. it calls
- /// ContinueDebugEvent()).
- bool Continue();
-
- protected:
- DebugAPI& debug_api();
-
- private:
- int id_;
- ProcessState state_;
- DebugEvent last_debug_event_;
- DebugAPI* debug_api_;
-
- DebuggeeThread(const DebuggeeThread&); // DISALLOW_COPY_AND_ASSIGN
- void operator=(const DebuggeeThread&);
-};
-} // namespace debug
-#endif // DEBUGGER_CORE_DEBUGGEE_THREAD_H_
-

Powered by Google App Engine
This is Rietveld 408576698