summaryrefslogtreecommitdiffstats
path: root/chrome/nacl/nacl_validation_db.h
blob: 81351d22626481ac78d0232d7a044ebb07051044 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright (c) 2012 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 CHROME_NACL_NACL_VALIDATION_DB_H_
#define CHROME_NACL_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  // CHROME_NACL_NACL_VALIDATION_DB_H_