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

Unified Diff: ppapi/c/ppb_url_loader.h

Issue 4747001: Move URLLoader, URLRequestInfo, and URLResponseInfo out of the dev directory... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 1 month 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/c/dev/ppb_url_response_info_dev.h ('k') | ppapi/c/ppb_url_request_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/ppb_url_loader.h
===================================================================
--- ppapi/c/ppb_url_loader.h (revision 65458)
+++ ppapi/c/ppb_url_loader.h (working copy)
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_C_DEV_PPB_URL_LOADER_DEV_H_
-#define PPAPI_C_DEV_PPB_URL_LOADER_DEV_H_
+#ifndef PPAPI_C_PPB_URL_LOADER_H_
+#define PPAPI_C_PPB_URL_LOADER_H_
#include "ppapi/c/pp_bool.h"
#include "ppapi/c/pp_instance.h"
@@ -12,7 +12,7 @@
struct PP_CompletionCallback;
-#define PPB_URLLOADER_DEV_INTERFACE "PPB_URLLoader(Dev);0.2"
+#define PPB_URLLOADER_INTERFACE "PPB_URLLoader;1"
// The interface for loading URLs.
//
@@ -28,7 +28,7 @@
// downloaded file to be complete. The downloaded file may be accessed via the
// GetBody method of the URLResponseInfo returned in step #4.
//
-struct PPB_URLLoader_Dev {
+struct PPB_URLLoader {
// Create a new URLLoader object. Returns 0 if the instance is invalid. The
// URLLoader is associated with a particular instance, so that any UI dialogs
// that need to be shown to the user can be positioned relative to the window
@@ -106,4 +106,4 @@
void (*Close)(PP_Resource loader);
};
-#endif // PPAPI_C_DEV_PPB_URL_LOADER_DEV_H_
+#endif // PPAPI_C_PPB_URL_LOADER_H_
« no previous file with comments | « ppapi/c/dev/ppb_url_response_info_dev.h ('k') | ppapi/c/ppb_url_request_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698