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

Unified Diff: ppapi/tests/test_transport.cc

Issue 8879009: In ppapi/tests: |... const*| -> |const ...*| (for consistency). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « ppapi/tests/test_tcp_socket_private_shared.cc ('k') | ppapi/tests/test_udp_socket_private_shared.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/tests/test_transport.cc
diff --git a/ppapi/tests/test_transport.cc b/ppapi/tests/test_transport.cc
index 311cf9de8cf7e425db28c06caab9486b8f94d7d1..3f629c41c9a0da08c36b41a030caa0bfcd9f3309 100644
--- a/ppapi/tests/test_transport.cc
+++ b/ppapi/tests/test_transport.cc
@@ -102,7 +102,7 @@ TestTransport::~TestTransport() {
}
bool TestTransport::Init() {
- transport_interface_ = reinterpret_cast<PPB_Transport_Dev const*>(
+ transport_interface_ = static_cast<const PPB_Transport_Dev*>(
pp::Module::Get()->GetBrowserInterface(PPB_TRANSPORT_DEV_INTERFACE));
return transport_interface_ && InitTestingInterface();
}
« no previous file with comments | « ppapi/tests/test_tcp_socket_private_shared.cc ('k') | ppapi/tests/test_udp_socket_private_shared.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698