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

Unified Diff: experimental/windows_debugger/debugger/core/debug_api_mock2.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/windows_debugger/debugger/core/debug_api_mock2.cc
diff --git a/experimental/windows_debugger/debugger/core/debug_api_mock2.cc b/experimental/windows_debugger/debugger/core/debug_api_mock2.cc
deleted file mode 100644
index 2e1ec0f2fc280225b25b41d3bdfc737f717cad04..0000000000000000000000000000000000000000
--- a/experimental/windows_debugger/debugger/core/debug_api_mock2.cc
+++ /dev/null
@@ -1,18 +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.
-#include "debugger/core/debug_api_mock2.h"
-
-
-namespace debug {
-BOOL DebugAPIMock2::WaitForDebugEvent(LPDEBUG_EVENT lpDebugEvent,
- DWORD dwMilliseconds) {
- if (events_.size() == 0)
- return FALSE;
-
- *lpDebugEvent = events_[0];
- events_.pop_front();
- return TRUE;
-}
-} // namespace debug
-

Powered by Google App Engine
This is Rietveld 408576698