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

Side by Side Diff: net/url_request/url_request_simple_job.h

Issue 7529043: Rename NET_API to NET_EXPORT, and rename NET_TEST to NET_EXPORT_PRIVATE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ 5 #ifndef NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_
6 #define NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ 6 #define NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/task.h" 11 #include "base/task.h"
12 #include "net/base/net_api.h" 12 #include "net/base/net_export.h"
13 #include "net/url_request/url_request_job.h" 13 #include "net/url_request/url_request_job.h"
14 14
15 namespace net { 15 namespace net {
16 16
17 class URLRequest; 17 class URLRequest;
18 18
19 class NET_API URLRequestSimpleJob : public URLRequestJob { 19 class NET_EXPORT URLRequestSimpleJob : public URLRequestJob {
20 public: 20 public:
21 explicit URLRequestSimpleJob(URLRequest* request); 21 explicit URLRequestSimpleJob(URLRequest* request);
22 22
23 virtual void Start(); 23 virtual void Start();
24 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read); 24 virtual bool ReadRawData(IOBuffer* buf, int buf_size, int *bytes_read);
25 virtual bool GetMimeType(std::string* mime_type) const; 25 virtual bool GetMimeType(std::string* mime_type) const;
26 virtual bool GetCharset(std::string* charset); 26 virtual bool GetCharset(std::string* charset);
27 27
28 protected: 28 protected:
29 virtual ~URLRequestSimpleJob(); 29 virtual ~URLRequestSimpleJob();
(...skipping 10 matching lines...) Expand all
40 std::string mime_type_; 40 std::string mime_type_;
41 std::string charset_; 41 std::string charset_;
42 std::string data_; 42 std::string data_;
43 int data_offset_; 43 int data_offset_;
44 ScopedRunnableMethodFactory<URLRequestSimpleJob> method_factory_; 44 ScopedRunnableMethodFactory<URLRequestSimpleJob> method_factory_;
45 }; 45 };
46 46
47 } // namespace net 47 } // namespace net
48 48
49 #endif // NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_ 49 #endif // NET_URL_REQUEST_URL_REQUEST_SIMPLE_JOB_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698