summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppapi_proxy_test.h
diff options
context:
space:
mode:
authordmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-14 16:39:23 +0000
committerdmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-07-14 16:39:23 +0000
commit657f4efd9e3a2716b7d634ead39bffa4a03ef57c (patch)
tree0e3d0f72f21d4fceae9a0d168763e9ecf76a2a30 /ppapi/proxy/ppapi_proxy_test.h
parente8d45e0f903a649e04ce421a3b60146af4695f4d (diff)
downloadchromium_src-657f4efd9e3a2716b7d634ead39bffa4a03ef57c.zip
chromium_src-657f4efd9e3a2716b7d634ead39bffa4a03ef57c.tar.gz
chromium_src-657f4efd9e3a2716b7d634ead39bffa4a03ef57c.tar.bz2
Remove untrusted scripting support.
BUG=82606 TEST=ppapi_tests,ppapi_unittests Review URL: http://codereview.chromium.org/7362012 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92557 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/ppapi_proxy_test.h')
-rw-r--r--ppapi/proxy/ppapi_proxy_test.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/ppapi/proxy/ppapi_proxy_test.h b/ppapi/proxy/ppapi_proxy_test.h
index 373f8e3..775b75c 100644
--- a/ppapi/proxy/ppapi_proxy_test.h
+++ b/ppapi/proxy/ppapi_proxy_test.h
@@ -137,6 +137,8 @@ class PluginProxyTest : public PluginProxyTestHarness, public testing::Test {
// testing::Test implementation.
virtual void SetUp();
virtual void TearDown();
+ private:
+ MessageLoop message_loop_;
};
class HostProxyTestHarness : public ProxyTestHarnessBase {
@@ -191,6 +193,8 @@ class HostProxyTest : public HostProxyTestHarness, public testing::Test {
// testing::Test implementation.
virtual void SetUp();
virtual void TearDown();
+ private:
+ MessageLoop message_loop_;
};
// Use this base class to test both sides of a proxy.