summaryrefslogtreecommitdiffstats
path: root/chromium/components/nacl/loader/nacl_validation_db.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/nacl/loader/nacl_validation_db.h')
-rw-r--r--chromium/components/nacl/loader/nacl_validation_db.h28
1 files changed, 0 insertions, 28 deletions
diff --git a/chromium/components/nacl/loader/nacl_validation_db.h b/chromium/components/nacl/loader/nacl_validation_db.h
deleted file mode 100644
index 3f9de423d9c..00000000000
--- a/chromium/components/nacl/loader/nacl_validation_db.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// Copyright 2013 The Chromium 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 COMPONENTS_NACL_LOADER_NACL_VALIDATION_DB_H_
-#define COMPONENTS_NACL_LOADER_NACL_VALIDATION_DB_H_
-
-#include <string>
-
-#include "base/basictypes.h"
-
-struct NaClFileToken;
-
-class NaClValidationDB {
- public:
- NaClValidationDB() {}
- virtual ~NaClValidationDB() {}
-
- virtual bool QueryKnownToValidate(const std::string& signature) = 0;
- virtual void SetKnownToValidate(const std::string& signature) = 0;
- virtual bool ResolveFileToken(struct NaClFileToken* file_token,
- int32* fd, std::string* path) = 0;
-
- private:
- DISALLOW_COPY_AND_ASSIGN(NaClValidationDB);
-};
-
-#endif // COMPONENTS_NACL_LOADER_NACL_VALIDATION_DB_H_