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

Unified Diff: chrome/nacl/nacl_validation_db.h

Issue 16881004: Move chrome/nacl to components/nacl. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make ios happy Created 7 years, 6 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
Index: chrome/nacl/nacl_validation_db.h
diff --git a/chrome/nacl/nacl_validation_db.h b/chrome/nacl/nacl_validation_db.h
deleted file mode 100644
index 81351d22626481ac78d0232d7a044ebb07051044..0000000000000000000000000000000000000000
--- a/chrome/nacl/nacl_validation_db.h
+++ /dev/null
@@ -1,28 +0,0 @@
-// 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_

Powered by Google App Engine
This is Rietveld 408576698