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

Unified Diff: src/trusted/validator/x86/error_reporter.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.h ('k') | src/trusted/validator/x86/error_reporter_verbose.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/validator/x86/error_reporter.c
diff --git a/src/trusted/validator/x86/error_reporter.c b/src/trusted/validator/x86/error_reporter.c
deleted file mode 100644
index d6bee453842637f604ed289ef5d36de197dc5a60..0000000000000000000000000000000000000000
--- a/src/trusted/validator/x86/error_reporter.c
+++ /dev/null
@@ -1,36 +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"
-
-static const char* NaClErrorReporterSupportedNames[] = {
- "NaClNullErrorReporter",
- "NaClInstStateErrorReporter",
- "NCDecoderInstErrorReporter"
-};
-
-/* Note: We can't move NaClErrorReporterSupportedName to
- * error_reporter_verbose.c because ncval_seg_sfi/ncdecode.c needs
- * to use it, and it is part of the base libraries needed by sel_ldr.
- */
-const char* NaClErrorReporterSupportedName(NaClErrorReporterSupported kind) {
- if ((0 < kind) &&
- (kind < NACL_ARRAY_SIZE(NaClErrorReporterSupportedNames))) {
- return NaClErrorReporterSupportedNames[kind];
- }
- return "NCDecoderInstErrorReporter";
-}
-
-void NaClNullErrorPrintf(NaClErrorReporter* self,
- const char* format, ...) {}
-
-void NaClNullErrorPrintfV(NaClErrorReporter* self,
- const char* format,
- va_list ap) {}
« no previous file with comments | « src/trusted/validator/x86/error_reporter.h ('k') | src/trusted/validator/x86/error_reporter_verbose.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698