OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ | 5 #ifndef WEBKIT_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ |
6 #define WEBKIT_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ | 6 #define WEBKIT_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "net/url_request/url_request_simple_job.h" | 10 #include "net/url_request/url_request_simple_job.h" |
11 #include "webkit/appcache/appcache_service.h" | 11 #include "webkit/appcache/appcache_service.h" |
12 | 12 |
| 13 namespace net { |
13 class URLRequest; | 14 class URLRequest; |
| 15 } // namespace net |
14 | 16 |
15 namespace appcache { | 17 namespace appcache { |
16 | 18 |
17 // A job subclass that implements a protocol to inspect the internal | 19 // A job subclass that implements a protocol to inspect the internal |
18 // state of appcache service. | 20 // state of appcache service. |
19 class ViewAppCacheInternalsJob : public URLRequestSimpleJob { | 21 class ViewAppCacheInternalsJob : public URLRequestSimpleJob { |
20 public: | 22 public: |
21 // Stores handle to appcache service for getting information. | 23 // Stores handle to appcache service for getting information. |
22 ViewAppCacheInternalsJob(URLRequest* request, AppCacheService* service); | 24 ViewAppCacheInternalsJob(net::URLRequest* request, AppCacheService* service); |
23 | 25 |
24 // Fetches the AppCache Info and calls StartAsync after it is done. | 26 // Fetches the AppCache Info and calls StartAsync after it is done. |
25 virtual void Start(); | 27 virtual void Start(); |
26 | 28 |
27 virtual bool GetData(std::string* mime_type, | 29 virtual bool GetData(std::string* mime_type, |
28 std::string* charset, | 30 std::string* charset, |
29 std::string* data) const; | 31 std::string* data) const; |
30 | 32 |
31 // Overridden method from URLRequestJob. | 33 // Overridden method from URLRequestJob. |
32 virtual bool IsRedirectResponse(GURL* location, int* http_status_code); | 34 virtual bool IsRedirectResponse(GURL* location, int* http_status_code); |
(...skipping 15 matching lines...) Loading... |
48 scoped_refptr<AppCacheInfoCollection> info_collection_; | 50 scoped_refptr<AppCacheInfoCollection> info_collection_; |
49 // Not owned. | 51 // Not owned. |
50 AppCacheService* appcache_service_; | 52 AppCacheService* appcache_service_; |
51 | 53 |
52 DISALLOW_COPY_AND_ASSIGN(ViewAppCacheInternalsJob); | 54 DISALLOW_COPY_AND_ASSIGN(ViewAppCacheInternalsJob); |
53 }; | 55 }; |
54 | 56 |
55 } // namespace appcache | 57 } // namespace appcache |
56 | 58 |
57 #endif // WEBKIT_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ | 59 #endif // WEBKIT_APPCACHE_VIEW_APPCACHE_INTERNALS_JOB_H_ |
OLD | NEW |