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

Unified Diff: chrome/browser/extensions/api/messaging/message_property_provider.h

Issue 356713005: Rename ServerBoundCert => ChannelID to reflect the current name (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix cookies_list.js Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/api/messaging/message_property_provider.h
diff --git a/chrome/browser/extensions/api/messaging/message_property_provider.h b/chrome/browser/extensions/api/messaging/message_property_provider.h
index 849aaaec13a4e92c5c6ee689fa0dd2226fe81e56..b680cb0fe8dad225569c8cb10a20d97a032d0910 100644
--- a/chrome/browser/extensions/api/messaging/message_property_provider.h
+++ b/chrome/browser/extensions/api/messaging/message_property_provider.h
@@ -27,28 +27,28 @@ class MessagePropertyProvider {
public:
MessagePropertyProvider();
- typedef base::Callback<void(const std::string&)> DomainBoundCertCallback;
+ typedef base::Callback<void(const std::string&)> ChannelIDCallback;
// 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);
+ void GetChannelID(Profile* profile,
+ const GURL& source_url,
+ const ChannelIDCallback& reply);
private:
- struct GetDomainBoundCertOutput;
+ struct GetChannelIDOutput;
- static void GetDomainBoundCertOnIOThread(
+ static void GetChannelIDOnIOThread(
scoped_refptr<base::TaskRunner> original_task_runner,
scoped_refptr<net::URLRequestContextGetter> request_context_getter,
const std::string& host,
- const DomainBoundCertCallback& reply);
+ const ChannelIDCallback& reply);
- static void GotDomainBoundCert(
+ static void GotChannelID(
scoped_refptr<base::TaskRunner> original_task_runner,
- struct GetDomainBoundCertOutput* output,
- const DomainBoundCertCallback& reply,
+ struct GetChannelIDOutput* output,
+ const ChannelIDCallback& reply,
int status);
DISALLOW_COPY_AND_ASSIGN(MessagePropertyProvider);

Powered by Google App Engine
This is Rietveld 408576698