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

Side by Side Diff: ppapi/tests/test_mouse_lock.h

Issue 10699045: Fix PPB_MouseLock.LockMouse crash and add tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/tests/test_mouse_lock.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef PAPPI_TESTS_TEST_MOUSE_LOCK_H_
6 #define PPAPI_TESTS_TEST_MOUSE_LOCK_H_
7
8 #include <string>
9
10 #include "ppapi/cpp/mouse_lock.h"
11 #include "ppapi/cpp/rect.h"
12 #include "ppapi/tests/test_case.h"
13 #include "ppapi/tests/test_utils.h"
14
15 class TestMouseLock: public TestCase, public pp::MouseLock {
16 public:
17 explicit TestMouseLock(TestingInstance* instance);
18 virtual ~TestMouseLock();
19
20 // TestCase implementation.
21 virtual bool Init();
22 virtual void RunTests(const std::string& filter);
23 virtual void DidChangeView(const pp::View& view);
24
25 // pp::MouseLock implementation.
26 virtual void MouseLockLost();
27
28 private:
29 std::string TestSucceedWhenAllowed();
30 std::string TestFailWhenBlocked();
31
32 void SimulateUserGesture();
33
34 pp::Rect position_;
35
36 NestedEvent nested_event_;
37 };
38
39 #endif // PPAPI_TESTS_TEST_MOUSE_LOCK_H_
OLDNEW
« no previous file with comments | « ppapi/proxy/ppb_instance_proxy.cc ('k') | ppapi/tests/test_mouse_lock.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698