OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:InstallSigner
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/chrome/browser/extensions/
install_signer.h
56
class
InstallSigner
{
64
InstallSigner
(net::URLRequestContextGetter* context_getter,
66
~
InstallSigner
();
118
DISALLOW_COPY_AND_ASSIGN(
InstallSigner
);
install_verifier.h
26
class
InstallSigner
;
135
// The current
InstallSigner
, if we have a signature request running.
136
scoped_ptr<
InstallSigner
> signer_;
install_signer.cc
190
InstallSigner
::
InstallSigner
(net::URLRequestContextGetter* context_getter,
195
InstallSigner
::~
InstallSigner
() {
199
bool
InstallSigner
::VerifySignature(const InstallSignature& signature) {
235
class
InstallSigner
::FetcherDelegate : public net::URLFetcherDelegate {
254
ExtensionIdSet
InstallSigner
::GetForcedNotFromWebstore() {
303
void
InstallSigner
::GetSignature(const SignatureCallback& callback) {
332
base::Closure closure = base::Bind(&
InstallSigner
::ParseFetchResponse,
366
void
InstallSigner
::ReportErrorViaCallback()
[
all
...]
install_verifier.cc
73
if (!extensions::
InstallSigner
::GetForcedNotFromWebstore().empty())
159
} else if (!
InstallSigner
::VerifySignature(*signature_from_prefs.get())) {
306
if (ContainsKey(
InstallSigner
::GetForcedNotFromWebstore(), extension->id())) {
429
signer_.reset(new
InstallSigner
(context_getter_, ids_to_sign));
436
DCHECK(
InstallSigner
::VerifySignature(*signature_));
447
DCHECK(
InstallSigner
::VerifySignature(*signature_.get()));
450
DCHECK(
InstallSigner
::VerifySignature(*rehydrated.get()));
485
} else if (!
InstallSigner
::VerifySignature(*signature)) {
Completed in 25 milliseconds