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

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

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase for line-wrap. Created 8 years, 11 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/tests/test_buffer.h ('k') | ppapi/tests/test_char_set.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 (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 #ifndef PPAPI_TESTS_TEST_CASE_H_ 5 #ifndef PPAPI_TESTS_TEST_CASE_H_
6 #define PPAPI_TESTS_TEST_CASE_H_ 6 #define PPAPI_TESTS_TEST_CASE_H_
7 7
8 #include <cmath> 8 #include <cmath>
9 #include <limits> 9 #include <limits>
10 #include <string> 10 #include <string>
11 11
12 #include "ppapi/c/pp_resource.h" 12 #include "ppapi/c/pp_resource.h"
13 #include "ppapi/c/dev/ppb_testing_dev.h"
13 #include "ppapi/cpp/dev/scrollbar_dev.h" 14 #include "ppapi/cpp/dev/scrollbar_dev.h"
14 15
15 #if (defined __native_client__) 16 #if (defined __native_client__)
16 #include "ppapi/cpp/var.h" 17 #include "ppapi/cpp/var.h"
17 #else 18 #else
18 #include "ppapi/cpp/private/var_private.h" 19 #include "ppapi/cpp/private/var_private.h"
19 #endif 20 #endif
20 21
21 struct PPB_Testing_Dev;
22 class TestingInstance; 22 class TestingInstance;
23 23
24 namespace pp { 24 namespace pp {
25 namespace deprecated { 25 namespace deprecated {
26 class ScriptableObject; 26 class ScriptableObject;
27 } 27 }
28 } 28 }
29 29
30 // Individual classes of tests derive from this generic test case. 30 // Individual classes of tests derive from this generic test case.
31 class TestCase { 31 class TestCase {
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 #define ASSERT_FALSE(cmd) ASSERT_TRUE(!(cmd)) 201 #define ASSERT_FALSE(cmd) ASSERT_TRUE(!(cmd))
202 #define ASSERT_EQ(a, b) ASSERT_TRUE((a) == (b)) 202 #define ASSERT_EQ(a, b) ASSERT_TRUE((a) == (b))
203 #define ASSERT_NE(a, b) ASSERT_TRUE((a) != (b)) 203 #define ASSERT_NE(a, b) ASSERT_TRUE((a) != (b))
204 204
205 #define ASSERT_DOUBLE_EQ(a, b) ASSERT_TRUE( \ 205 #define ASSERT_DOUBLE_EQ(a, b) ASSERT_TRUE( \
206 std::fabs((a)-(b)) <= std::numeric_limits<double>::epsilon()) 206 std::fabs((a)-(b)) <= std::numeric_limits<double>::epsilon())
207 207
208 #define PASS() return std::string() 208 #define PASS() return std::string()
209 209
210 #endif // PPAPI_TESTS_TEST_CASE_H_ 210 #endif // PPAPI_TESTS_TEST_CASE_H_
OLDNEW
« no previous file with comments | « ppapi/tests/test_buffer.h ('k') | ppapi/tests/test_char_set.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698