OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" | 5 #include "webkit/renderer/appcache/web_application_cache_host_impl.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "base/id_map.h" | 8 #include "base/id_map.h" |
9 #include "base/string_util.h" | 9 #include "base/strings/string_util.h" |
10 #include "base/stringprintf.h" | 10 #include "base/strings/stringprintf.h" |
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" | 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebDataSource.h" |
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" | 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebFrame.h" |
13 #include "third_party/WebKit/public/platform/WebURL.h" | 13 #include "third_party/WebKit/public/platform/WebURL.h" |
14 #include "third_party/WebKit/public/platform/WebURLRequest.h" | 14 #include "third_party/WebKit/public/platform/WebURLRequest.h" |
15 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 15 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
16 | 16 |
17 using WebKit::WebApplicationCacheHost; | 17 using WebKit::WebApplicationCacheHost; |
18 using WebKit::WebApplicationCacheHostClient; | 18 using WebKit::WebApplicationCacheHostClient; |
19 using WebKit::WebDataSource; | 19 using WebKit::WebDataSource; |
20 using WebKit::WebFrame; | 20 using WebKit::WebFrame; |
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
319 web_resources[i].isExplicit = resource_infos[i].is_explicit; | 319 web_resources[i].isExplicit = resource_infos[i].is_explicit; |
320 web_resources[i].isManifest = resource_infos[i].is_manifest; | 320 web_resources[i].isManifest = resource_infos[i].is_manifest; |
321 web_resources[i].isForeign = resource_infos[i].is_foreign; | 321 web_resources[i].isForeign = resource_infos[i].is_foreign; |
322 web_resources[i].isFallback = resource_infos[i].is_fallback; | 322 web_resources[i].isFallback = resource_infos[i].is_fallback; |
323 web_resources[i].url = resource_infos[i].url; | 323 web_resources[i].url = resource_infos[i].url; |
324 } | 324 } |
325 resources->swap(web_resources); | 325 resources->swap(web_resources); |
326 } | 326 } |
327 | 327 |
328 } // appcache namespace | 328 } // appcache namespace |
OLD | NEW |