| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "components/test_runner/test_runner.h" | 5 #include "components/test_runner/test_runner.h" |
| 6 | 6 |
| 7 #include <stddef.h> | 7 #include <stddef.h> |
| 8 #include <limits> | 8 #include <limits> |
| 9 #include <utility> | 9 #include <utility> |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "third_party/WebKit/public/platform/WebCanvas.h" | 34 #include "third_party/WebKit/public/platform/WebCanvas.h" |
| 35 #include "third_party/WebKit/public/platform/WebData.h" | 35 #include "third_party/WebKit/public/platform/WebData.h" |
| 36 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" | 36 #include "third_party/WebKit/public/platform/WebPasswordCredential.h" |
| 37 #include "third_party/WebKit/public/platform/WebPoint.h" | 37 #include "third_party/WebKit/public/platform/WebPoint.h" |
| 38 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 38 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 39 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionData.h" | 39 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eMotionData.h" |
| 40 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationData.h" | 40 #include "third_party/WebKit/public/platform/modules/device_orientation/WebDevic
eOrientationData.h" |
| 41 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerRegistration.h" | 41 #include "third_party/WebKit/public/platform/modules/serviceworker/WebServiceWor
kerRegistration.h" |
| 42 #include "third_party/WebKit/public/web/WebArrayBuffer.h" | 42 #include "third_party/WebKit/public/web/WebArrayBuffer.h" |
| 43 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" | 43 #include "third_party/WebKit/public/web/WebArrayBufferConverter.h" |
| 44 #include "third_party/WebKit/public/web/WebBindings.h" | |
| 45 #include "third_party/WebKit/public/web/WebDataSource.h" | 44 #include "third_party/WebKit/public/web/WebDataSource.h" |
| 46 #include "third_party/WebKit/public/web/WebDocument.h" | 45 #include "third_party/WebKit/public/web/WebDocument.h" |
| 47 #include "third_party/WebKit/public/web/WebFindOptions.h" | 46 #include "third_party/WebKit/public/web/WebFindOptions.h" |
| 48 #include "third_party/WebKit/public/web/WebFrame.h" | 47 #include "third_party/WebKit/public/web/WebFrame.h" |
| 49 #include "third_party/WebKit/public/web/WebInputElement.h" | 48 #include "third_party/WebKit/public/web/WebInputElement.h" |
| 50 #include "third_party/WebKit/public/web/WebKit.h" | 49 #include "third_party/WebKit/public/web/WebKit.h" |
| 51 #include "third_party/WebKit/public/web/WebLocalFrame.h" | 50 #include "third_party/WebKit/public/web/WebLocalFrame.h" |
| 52 #include "third_party/WebKit/public/web/WebPageImportanceSignals.h" | 51 #include "third_party/WebKit/public/web/WebPageImportanceSignals.h" |
| 53 #include "third_party/WebKit/public/web/WebScriptSource.h" | 52 #include "third_party/WebKit/public/web/WebScriptSource.h" |
| 54 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" | 53 #include "third_party/WebKit/public/web/WebSecurityPolicy.h" |
| (...skipping 3224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3279 } | 3278 } |
| 3280 | 3279 |
| 3281 void TestRunner::DidLosePointerLockInternal() { | 3280 void TestRunner::DidLosePointerLockInternal() { |
| 3282 bool was_locked = pointer_locked_; | 3281 bool was_locked = pointer_locked_; |
| 3283 pointer_locked_ = false; | 3282 pointer_locked_ = false; |
| 3284 if (was_locked) | 3283 if (was_locked) |
| 3285 web_view_->didLosePointerLock(); | 3284 web_view_->didLosePointerLock(); |
| 3286 } | 3285 } |
| 3287 | 3286 |
| 3288 } // namespace test_runner | 3287 } // namespace test_runner |
| OLD | NEW |