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

Unified Diff: ppapi/native_client/tests/ppapi_simple_tests/audio.cc

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: Update native_client_sdk/.../hello_world_c example for definition changes. Created 9 years 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 side-by-side diff with in-line comments
Download patch
Index: ppapi/native_client/tests/ppapi_simple_tests/audio.cc
diff --git a/ppapi/native_client/tests/ppapi_simple_tests/audio.cc b/ppapi/native_client/tests/ppapi_simple_tests/audio.cc
index 9aedcd4162674c91402b11e54a8a049aca450e1e..bf824a267e226bff82608ad03007fd01e4789528 100644
--- a/ppapi/native_client/tests/ppapi_simple_tests/audio.cc
+++ b/ppapi/native_client/tests/ppapi_simple_tests/audio.cc
@@ -76,12 +76,12 @@ class MyInstance : public pp::Instance {
PPB_GetInterface get_browser_if =
pp::Module::Get()->get_browser_interface();
- const struct PPB_AudioConfig* audio_config_if =
- static_cast<const struct PPB_AudioConfig*>(
+ const PPB_AudioConfig* audio_config_if =
+ static_cast<const PPB_AudioConfig*>(
get_browser_if(PPB_AUDIO_CONFIG_INTERFACE));
- const struct PPB_Audio* audio_if =
- static_cast<const struct PPB_Audio*>(
+ const PPB_Audio* audio_if =
+ static_cast<const PPB_Audio*>(
get_browser_if(PPB_AUDIO_INTERFACE));
CHECK(NULL != audio_config_if);

Powered by Google App Engine
This is Rietveld 408576698