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

Side by Side Diff: src/trusted/validator/validation_status.h

Issue 10134056: Refactor the process of choosing validators. (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: The actual refactoring Created 8 years, 8 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 /*
2 * Copyright (c) 2012 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_
8 #define NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_
9
10 /* Defines possible validation status values. */
11 typedef enum NaClValidationStatus {
12 /* The call to the validator succeeded. */
13 NaClValidationSucceeded,
14 /* The call to the validator failed (Reason unspecified) */
15 NaClValidationFailed,
16 /* The call to the validator failed, due to not enough memory. */
17 NaClValidationFailedOutOfMemory,
18 /* The call to the validator failed, due to it not being implemented yet. */
19 NaClValidationFailedNotImplemented,
20 /* The call to the validator failed, because the CPU is not supported. */
21 NaClValidationFailedCpuNotSupported,
22 /* The call to the validator failed, due to segment alignment issues. */
23 NaClValidationFailedSegmentationIssue
24 } NaClValidationStatus;
25
26 #endif /* NATIVE_CLIENT_SRC_TRUSTED_VALIDATOR_VALIDATION_STATUS_H_ */
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698