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

Side by Side Diff: components/test_runner/test_runner.cc

Issue 1483733002: Remove support for NPObjects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 8 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 unified diff | Download patch
« no previous file with comments | « components/test_runner/test_plugin.cc ('k') | content/child/npapi/np_channel_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « components/test_runner/test_plugin.cc ('k') | content/child/npapi/np_channel_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698