diff options
author | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-23 17:06:31 +0000 |
---|---|---|
committer | neb@chromium.org <neb@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-23 17:06:31 +0000 |
commit | b574626479d71344d5190155026873a57cf0d5a3 (patch) | |
tree | 4e4bc0b2e3f24d1985460c1a4d8b125836647823 /ppapi/tests/test_var.h | |
parent | 7cdf00c22466989309283d9d0e7f8a766a81195a (diff) | |
download | chromium_src-b574626479d71344d5190155026873a57cf0d5a3.zip chromium_src-b574626479d71344d5190155026873a57cf0d5a3.tar.gz chromium_src-b574626479d71344d5190155026873a57cf0d5a3.tar.bz2 |
Remove PPB_Var interface's scripting functionality.
PPB_Var now only deals with the PPB_Var datatype. PPB_Var_Deprecated provides scripting for legacy users, post message API will be the replacement in the future.
BUG=76453
TEST=none
Review URL: http://codereview.chromium.org/6673098
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79139 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests/test_var.h')
-rw-r--r-- | ppapi/tests/test_var.h | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/ppapi/tests/test_var.h b/ppapi/tests/test_var.h deleted file mode 100644 index 3a0229b..0000000 --- a/ppapi/tests/test_var.h +++ /dev/null @@ -1,30 +0,0 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. -// Use of this source code is governed by a BSD-style license that can be -// found in the LICENSE file. - -#ifndef PPAPI_TEST_TEST_VAR_H_ -#define PPAPI_TEST_TEST_VAR_H_ - -#include <string> - -#include "ppapi/tests/test_case.h" - -struct PPB_Var; - -class TestVar : public TestCase { - public: - explicit TestVar(TestingInstance* instance) : TestCase(instance) {} - - // TestCase implementation. - virtual bool Init(); - virtual void RunTest(); - - private: - std::string TestConvertType(); - std::string TestDefineProperty(); - - // Used by the tests that access the C API directly. - const PPB_Var* var_interface_; -}; - -#endif // PPAPI_TEST_TEST_VAR_H_ |