Chromium Code Reviews| 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); |