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

Unified Diff: src/trusted/validator/x86/error_reporter_verbose.c

Issue 625923004: Delete old x86 validator. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: rebase master Created 6 years, 2 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
« no previous file with comments | « src/trusted/validator/x86/error_reporter.c ('k') | src/trusted/validator/x86/halt_trim.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/error_reporter_verbose.c
diff --git a/src/trusted/validator/x86/error_reporter_verbose.c b/src/trusted/validator/x86/error_reporter_verbose.c
deleted file mode 100644
index 1413648bbb27a4d56ffc51be2f8f0a6c5589e2f4..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/error_reporter_verbose.c
+++ /dev/null
@@ -1,25 +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 "native_client/src/trusted/validator/x86/error_reporter.h"
-
-#include "native_client/src/include/nacl_macros.h"
-#include "native_client/src/shared/gio/gio.h"
-#include "native_client/src/shared/platform/nacl_log.h"
-
-void NaClVerboseErrorPrintf(NaClErrorReporter* self,
- const char* format, ...) {
- va_list ap;
- va_start(ap, format);
- gvprintf(NaClLogGetGio(), format, ap);
- va_end(ap);
-}
-
-void NaClVerboseErrorPrintfV(NaClErrorReporter* self,
- const char* format,
- va_list ap) {
- gvprintf(NaClLogGetGio(), format, ap);
-}
« no previous file with comments | « src/trusted/validator/x86/error_reporter.c ('k') | src/trusted/validator/x86/halt_trim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698