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

Side by Side Diff: tpm.h

Issue 6821025: entd: move opencryptoki initialization out of entd (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/entd.git@master
Patch Set: switch to using a flag to expect cryptohome to init pkcs11 Created 9 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
« no previous file with comments | « reference_extension/options.html ('k') | tpm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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_
OLDNEW
« no previous file with comments | « reference_extension/options.html ('k') | tpm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698