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

Unified Diff: ppapi/thunk/ppb_url_util_thunk.cc

Issue 8790004: Rename the shared impl files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: New one 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/thunk/ppb_url_util_thunk.cc
diff --git a/ppapi/thunk/ppb_url_util_thunk.cc b/ppapi/thunk/ppb_url_util_thunk.cc
index 1a6b4a8e8f72d9d8f2892f004af004bc24aed7c6..f1dbc27502f6945e7d201ac44fded02aa469b0c1 100644
--- a/ppapi/thunk/ppb_url_util_thunk.cc
+++ b/ppapi/thunk/ppb_url_util_thunk.cc
@@ -3,7 +3,7 @@
// found in the LICENSE file.
#include "ppapi/c/pp_errors.h"
-#include "ppapi/shared_impl/url_util_impl.h"
+#include "ppapi/shared_impl/ppb_url_util_shared.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_instance_api.h"
#include "ppapi/thunk/thunk.h"
@@ -54,10 +54,10 @@ PP_Var GetPluginInstanceURL(PP_Instance instance,
}
const PPB_URLUtil_Dev g_ppb_url_util = {
- &URLUtilImpl::Canonicalize,
- &URLUtilImpl::ResolveRelativeToURL,
+ &PPB_URLUtil_Shared::Canonicalize,
+ &PPB_URLUtil_Shared::ResolveRelativeToURL,
&ResolveRelativeToDocument,
- &URLUtilImpl::IsSameSecurityOrigin,
+ &PPB_URLUtil_Shared::IsSameSecurityOrigin,
&DocumentCanRequest,
&DocumentCanAccessDocument,
&GetDocumentURL,

Powered by Google App Engine
This is Rietveld 408576698