blob: 849aaaec13a4e92c5c6ee689fa0dd2226fe81e56 [file] [log] [blame]
// Copyright 2013 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_BROWSER_EXTENSIONS_API_MESSAGING_MESSAGE_PROPERTY_PROVIDER_H_
#define CHROME_BROWSER_EXTENSIONS_API_MESSAGING_MESSAGE_PROPERTY_PROVIDER_H_
#include <string>
#include "base/callback.h"
class GURL;
class Profile;
namespace base {
class TaskRunner;
}
namespace net {
class URLRequestContextGetter;
}
namespace extensions {
// This class provides properties of messages asynchronously.
class MessagePropertyProvider {
public:
MessagePropertyProvider();
typedef base::Callback<void(const std::string&)> DomainBoundCertCallback;
// Gets the DER-encoded public key of the domain-bound cert,
// aka TLS channel ID, for the given URL.
// Runs |reply| on the current message loop.
void GetDomainBoundCert(Profile* profile,
const GURL& source_url,
const DomainBoundCertCallback& reply);
private:
struct GetDomainBoundCertOutput;
static void GetDomainBoundCertOnIOThread(
scoped_refptr<base::TaskRunner> original_task_runner,
scoped_refptr<net::URLRequestContextGetter> request_context_getter,
const std::string& host,
const DomainBoundCertCallback& reply);
static void GotDomainBoundCert(
scoped_refptr<base::TaskRunner> original_task_runner,
struct GetDomainBoundCertOutput* output,
const DomainBoundCertCallback& reply,
int status);
DISALLOW_COPY_AND_ASSIGN(MessagePropertyProvider);
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_API_MESSAGING_MESSAGE_PROPERTY_PROVIDER_H_