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
61
class
InstallSigner
{
69
InstallSigner
(net::URLRequestContextGetter* context_getter,
71
~
InstallSigner
();
123
DISALLOW_COPY_AND_ASSIGN(
InstallSigner
);
install_signer.cc
226
InstallSigner
::
InstallSigner
(net::URLRequestContextGetter* context_getter,
231
InstallSigner
::~
InstallSigner
() {
235
bool
InstallSigner
::VerifySignature(const InstallSignature& signature) {
271
class
InstallSigner
::FetcherDelegate : public net::URLFetcherDelegate {
290
ExtensionIdSet
InstallSigner
::GetForcedNotFromWebstore() {
339
void
InstallSigner
::GetSignature(const SignatureCallback& callback) {
368
base::Closure closure = base::Bind(&
InstallSigner
::ParseFetchResponse,
403
void
InstallSigner
::ReportErrorViaCallback()
[
all
...]
install_verifier.h
31
class
InstallSigner
;
154
// The current
InstallSigner
, if we have a signature request running.
155
scoped_ptr<
InstallSigner
> signer_;
install_verifier.cc
85
if (!
InstallSigner
::GetForcedNotFromWebstore().empty())
214
} else if (!
InstallSigner
::VerifySignature(*signature_from_prefs.get())) {
372
if (ContainsKey(
InstallSigner
::GetForcedNotFromWebstore(), extension->id())) {
559
signer_.reset(new
InstallSigner
(context_->GetRequestContext(), ids_to_sign));
566
DCHECK(
InstallSigner
::VerifySignature(*signature_));
577
DCHECK(
InstallSigner
::VerifySignature(*signature_.get()));
580
DCHECK(
InstallSigner
::VerifySignature(*rehydrated.get()));
615
} else if (!
InstallSigner
::VerifySignature(*signature)) {
Completed in 98 milliseconds