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

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

Issue 6673098: Remove PPB_Var interface's scripting functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing convert. Created 9 years, 9 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_class.cc ('k') | ppapi/tests/test_var.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2010 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 PPAPI_TEST_TEST_VAR_H_
6 #define PPAPI_TEST_TEST_VAR_H_
7
8 #include <string>
9
10 #include "ppapi/tests/test_case.h"
11
12 struct PPB_Var;
13
14 class TestVar : public TestCase {
15 public:
16 explicit TestVar(TestingInstance* instance) : TestCase(instance) {}
17
18 // TestCase implementation.
19 virtual bool Init();
20 virtual void RunTest();
21
22 private:
23 std::string TestConvertType();
24 std::string TestDefineProperty();
25
26 // Used by the tests that access the C API directly.
27 const PPB_Var* var_interface_;
28 };
29
30 #endif // PPAPI_TEST_TEST_VAR_H_
OLDNEW
« no previous file with comments | « ppapi/tests/test_class.cc ('k') | ppapi/tests/test_var.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698