| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef ENTD_TPM_H_ | 5 #ifndef ENTD_TPM_H_ |
| 6 #define ENTD_TPM_H_ | 6 #define ENTD_TPM_H_ |
| 7 | 7 |
| 8 #include "entd/scriptable.h" | 8 #include "entd/scriptable.h" |
| 9 | 9 |
| 10 namespace entd { | 10 namespace entd { |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 static v8::Handle<v8::Value> IsEnabled(v8::Local<v8::String> property, | 23 static v8::Handle<v8::Value> IsEnabled(v8::Local<v8::String> property, |
| 24 const v8::AccessorInfo& info); | 24 const v8::AccessorInfo& info); |
| 25 static v8::Handle<v8::Value> IsReady(v8::Local<v8::String> property, | 25 static v8::Handle<v8::Value> IsReady(v8::Local<v8::String> property, |
| 26 const v8::AccessorInfo& info); | 26 const v8::AccessorInfo& info); |
| 27 static v8::Handle<v8::Value> IsOwned(v8::Local<v8::String> property, | 27 static v8::Handle<v8::Value> IsOwned(v8::Local<v8::String> property, |
| 28 const v8::AccessorInfo& info); | 28 const v8::AccessorInfo& info); |
| 29 static v8::Handle<v8::Value> IsBeingOwned(v8::Local<v8::String> property, | 29 static v8::Handle<v8::Value> IsBeingOwned(v8::Local<v8::String> property, |
| 30 const v8::AccessorInfo& info); | 30 const v8::AccessorInfo& info); |
| 31 static v8::Handle<v8::Value> GetStatusString(v8::Local<v8::String> property, | 31 static v8::Handle<v8::Value> GetStatusString(v8::Local<v8::String> property, |
| 32 const v8::AccessorInfo& info); | 32 const v8::AccessorInfo& info); |
| 33 static v8::Handle<v8::Value> IsTokenReady(v8::Local<v8::String> property, |
| 34 const v8::AccessorInfo& info); |
| 35 |
| 36 static bool cryptohome_init_pkcs11; |
| 33 }; | 37 }; |
| 34 | 38 |
| 35 } // namespace entd | 39 } // namespace entd |
| 36 | 40 |
| 37 #endif // ENTD_BROWSER_H_ | 41 #endif // ENTD_BROWSER_H_ |
| OLD | NEW |