| Index: third_party/WebKit/Source/modules/presentation/Presentation.cpp
|
| diff --git a/third_party/WebKit/Source/modules/presentation/Presentation.cpp b/third_party/WebKit/Source/modules/presentation/Presentation.cpp
|
| index 0f7c9282ea2c682e25d4411e7b8dc8bf375572f1..6d38d46fd71a7daf4d619eb8b04f2cb361d8330f 100644
|
| --- a/third_party/WebKit/Source/modules/presentation/Presentation.cpp
|
| +++ b/third_party/WebKit/Source/modules/presentation/Presentation.cpp
|
| @@ -50,9 +50,9 @@ void Presentation::setDefaultRequest(PresentationRequest* request) {
|
| PresentationReceiver* Presentation::receiver() {
|
| PresentationController* controller = PresentationController::from(*frame());
|
| auto* client = controller ? controller->client() : nullptr;
|
| - // TODO(crbug.com/647296): only return something if the Blink instance is running in
|
| - // presentation receiver mode. The flag PresentationReceiver could be used
|
| - // for that.
|
| + // TODO(crbug.com/647296): only return something if the Blink instance is
|
| + // running in presentation receiver mode. The flag PresentationReceiver could
|
| + // be used for that.
|
| if (!m_receiver)
|
| m_receiver = new PresentationReceiver(frame(), client);
|
| return m_receiver;
|
|
|