Chromium Code Reviews| Index: third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
| diff --git a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
| index 323c6a38f42c7c8e9b28cb3241ff5f630d0f2e07..ea526a75d36bf47ae80aa6560f31f2430aaeaba9 100644 |
| --- a/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
| +++ b/third_party/WebKit/Source/modules/presentation/PresentationConnection.h |
| @@ -77,7 +77,7 @@ class PresentationConnection final : public EventTargetWithInlineData, |
| // this connection. |
| bool matches(WebPresentationConnectionClient*) const; |
| - // Notifies the connection about its state change. |
| + // Queue a task to notifies the connection about its state change. |
|
imcheng
2016/10/21 23:58:15
Queues a task to notify...
zhaobin
2016/10/24 19:42:39
reverted.
|
| void didChangeState(WebPresentationConnectionState); |
| // Notifies the connection about its state change to 'closed'. |
| @@ -113,6 +113,7 @@ class PresentationConnection final : public EventTargetWithInlineData, |
| // Callbacks invoked from BlobLoader. |
| void didFinishLoadingBlob(DOMArrayBuffer*); |
| void didFailLoadingBlob(FileError::ErrorCode); |
| + void didChangeStateInternal(WebPresentationConnectionState); |
|
imcheng
2016/10/21 23:58:15
nit: blank line before this to separate it from th
zhaobin
2016/10/24 19:42:39
reverted.
|
| // Cancel loads and pending messages when the connection is closed. |
| void tearDown(); |