summaryrefslogtreecommitdiffstats
path: root/ppapi/tests
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 15:33:20 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-05 15:33:20 +0000
commit3e74283ee49c1e1095868cc196f9b915f6c7c27e (patch)
treec1776d8f8380bdc345580c59f5294c38d1b3a01d /ppapi/tests
parent908fbf459ed4ef66c0e7dc6fb59d63efde47c904 (diff)
downloadchromium_src-3e74283ee49c1e1095868cc196f9b915f6c7c27e.zip
chromium_src-3e74283ee49c1e1095868cc196f9b915f6c7c27e.tar.gz
chromium_src-3e74283ee49c1e1095868cc196f9b915f6c7c27e.tar.bz2
Convert transport, scrollbar, and query policy to IDL.
This renames the scrollbar interface to not use the version number to make it consistent with other APIs. TEST=none BUG=none Review URL: http://codereview.chromium.org/8142001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@104102 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/tests')
-rw-r--r--ppapi/tests/test_query_policy.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/ppapi/tests/test_query_policy.cc b/ppapi/tests/test_query_policy.cc
index 6e8b4cb..87fba20 100644
--- a/ppapi/tests/test_query_policy.cc
+++ b/ppapi/tests/test_query_policy.cc
@@ -32,8 +32,8 @@ static PPP_PolicyUpdate_Dev policy_updated_interface = {
bool TestQueryPolicy::Init() {
query_policy_interface_ = static_cast<PPB_QueryPolicy_Dev const*>(
- pp::Module::Get()->GetBrowserInterface(PPB_QUERY_POLICY_DEV_INTERFACE));
- pp::Module::Get()->AddPluginInterface(PPP_POLICY_UPDATE_DEV_INTERFACE,
+ pp::Module::Get()->GetBrowserInterface(PPB_QUERYPOLICY_DEV_INTERFACE));
+ pp::Module::Get()->AddPluginInterface(PPP_POLICYUPDATE_DEV_INTERFACE,
&policy_updated_interface);
return query_policy_interface_ && InitTestingInterface();