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

Unified Diff: ppapi/cpp/url_request_info.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/cpp/url_loader.cc ('k') | ppapi/cpp/url_request_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/cpp/url_request_info.h
===================================================================
--- ppapi/cpp/url_request_info.h (revision 65458)
+++ ppapi/cpp/url_request_info.h (working copy)
@@ -2,10 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef PPAPI_CPP_DEV_URL_REQUEST_INFO_DEV_H_
-#define PPAPI_CPP_DEV_URL_REQUEST_INFO_DEV_H_
+#ifndef PPAPI_CPP_URL_REQUEST_INFO_H_
+#define PPAPI_CPP_URL_REQUEST_INFO_H_
-#include "ppapi/c/dev/ppb_url_request_info_dev.h"
+#include "ppapi/c/ppb_url_request_info.h"
#include "ppapi/cpp/resource.h"
#include "ppapi/cpp/var.h"
@@ -13,16 +13,13 @@
class FileRef_Dev;
-class URLRequestInfo_Dev : public Resource {
+class URLRequestInfo : public Resource {
public:
- URLRequestInfo_Dev();
- URLRequestInfo_Dev(const URLRequestInfo_Dev& other);
+ URLRequestInfo();
+ URLRequestInfo(const URLRequestInfo& other);
- URLRequestInfo_Dev& operator=(const URLRequestInfo_Dev& other);
- void swap(URLRequestInfo_Dev& other);
-
- // PPB_URLRequestInfo_Dev methods:
- bool SetProperty(PP_URLRequestProperty_Dev property, const Var& value);
+ // PPB_URLRequestInfo methods:
+ bool SetProperty(PP_URLRequestProperty property, const Var& value);
bool AppendDataToBody(const char* data, uint32_t len);
bool AppendFileToBody(const FileRef_Dev& file_ref,
PP_Time expected_last_modified_time = 0);
@@ -54,4 +51,4 @@
} // namespace pp
-#endif // PPAPI_CPP_DEV_URL_REQUEST_INFO_DEV_H_
+#endif // PPAPI_CPP_URL_REQUEST_INFO_H_
« no previous file with comments | « ppapi/cpp/url_loader.cc ('k') | ppapi/cpp/url_request_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698