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

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: Rebase Created 6 years, 6 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..cd0096af7661b1d5fc7e455d8b5e4e6fa292a424 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,
+ void GetChannelID(Profile* profile,
const GURL& source_url,
- const DomainBoundCertCallback& reply);
+ const ChannelIDCallback& reply);
wtc 2014/07/01 19:50:49 Fix the indentation of the parameters.
Ryan Hamilton 2014/07/21 19:12:05 Done.
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