OLD | NEW |
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 WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ | 5 #ifndef WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ |
6 #define WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ | 6 #define WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/task.h" | 10 #include "base/task.h" |
11 #include "net/url_request/url_request_simple_job.h" | 11 #include "net/url_request/url_request_simple_job.h" |
12 #include "webkit/blob/blob_export.h" | 12 #include "webkit/blob/blob_export.h" |
13 | 13 |
14 namespace net { | 14 namespace net { |
15 class URLRequest; | 15 class URLRequest; |
16 } // namespace net | 16 } // namespace net |
17 | 17 |
18 namespace webkit_blob { | 18 namespace webkit_blob { |
19 | 19 |
20 class BlobData; | 20 class BlobData; |
21 class BlobStorageController; | 21 class BlobStorageController; |
22 | 22 |
23 // A job subclass that implements a protocol to inspect the internal | 23 // A job subclass that implements a protocol to inspect the internal |
24 // state of blob registry. | 24 // state of blob registry. |
25 class BLOB_EXPORT ViewBlobInternalsJob : public net::URLRequestSimpleJob { | 25 class BLOB_EXPORT ViewBlobInternalsJob : public net::URLRequestSimpleJob { |
26 public: | 26 public: |
27 ViewBlobInternalsJob(net::URLRequest* request, | 27 ViewBlobInternalsJob(net::URLRequest* request, |
28 BlobStorageController* blob_storage_controller); | 28 BlobStorageController* blob_storage_controller); |
29 | 29 |
30 virtual void Start(); | 30 virtual void Start() OVERRIDE; |
31 virtual bool GetData(std::string* mime_type, | 31 virtual bool GetData(std::string* mime_type, |
32 std::string* charset, | 32 std::string* charset, |
33 std::string* data) const; | 33 std::string* data) const OVERRIDE; |
34 virtual bool IsRedirectResponse(GURL* location, int* http_status_code); | 34 virtual bool IsRedirectResponse(GURL* location, |
35 virtual void Kill(); | 35 int* http_status_code) OVERRIDE; |
| 36 virtual void Kill() OVERRIDE; |
36 | 37 |
37 private: | 38 private: |
38 virtual ~ViewBlobInternalsJob(); | 39 virtual ~ViewBlobInternalsJob(); |
39 | 40 |
40 void DoWorkAsync(); | 41 void DoWorkAsync(); |
41 void GenerateHTML(std::string* out) const; | 42 void GenerateHTML(std::string* out) const; |
42 static void GenerateHTMLForBlobData(const BlobData& blob_data, | 43 static void GenerateHTMLForBlobData(const BlobData& blob_data, |
43 std::string* out); | 44 std::string* out); |
44 | 45 |
45 BlobStorageController* blob_storage_controller_; | 46 BlobStorageController* blob_storage_controller_; |
46 ScopedRunnableMethodFactory<ViewBlobInternalsJob> method_factory_; | 47 ScopedRunnableMethodFactory<ViewBlobInternalsJob> method_factory_; |
47 | 48 |
48 DISALLOW_COPY_AND_ASSIGN(ViewBlobInternalsJob); | 49 DISALLOW_COPY_AND_ASSIGN(ViewBlobInternalsJob); |
49 }; | 50 }; |
50 | 51 |
51 } // namespace webkit_blob | 52 } // namespace webkit_blob |
52 | 53 |
53 #endif // WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ | 54 #endif // WEBKIT_BLOB_VIEW_BLOB_INTERNALS_JOB_H_ |
OLD | NEW |