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

Side by Side Diff: content/child/appcache/web_application_cache_host_impl.cc

Issue 1544273002: Switch to standard integer types in content/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/child/appcache/web_application_cache_host_impl.h" 5 #include "content/child/appcache/web_application_cache_host_impl.h"
6 6
7 #include <stddef.h>
8
7 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
8 #include "base/id_map.h" 10 #include "base/id_map.h"
9 #include "base/strings/string_util.h" 11 #include "base/strings/string_util.h"
10 #include "base/strings/stringprintf.h" 12 #include "base/strings/stringprintf.h"
11 #include "third_party/WebKit/public/platform/WebString.h" 13 #include "third_party/WebKit/public/platform/WebString.h"
12 #include "third_party/WebKit/public/platform/WebURL.h" 14 #include "third_party/WebKit/public/platform/WebURL.h"
13 #include "third_party/WebKit/public/platform/WebURLRequest.h" 15 #include "third_party/WebKit/public/platform/WebURLRequest.h"
14 #include "third_party/WebKit/public/platform/WebURLResponse.h" 16 #include "third_party/WebKit/public/platform/WebURLResponse.h"
15 17
16 using blink::WebApplicationCacheHost; 18 using blink::WebApplicationCacheHost;
(...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 web_resources[i].isExplicit = resource_infos[i].is_explicit; 316 web_resources[i].isExplicit = resource_infos[i].is_explicit;
315 web_resources[i].isManifest = resource_infos[i].is_manifest; 317 web_resources[i].isManifest = resource_infos[i].is_manifest;
316 web_resources[i].isForeign = resource_infos[i].is_foreign; 318 web_resources[i].isForeign = resource_infos[i].is_foreign;
317 web_resources[i].isFallback = resource_infos[i].is_fallback; 319 web_resources[i].isFallback = resource_infos[i].is_fallback;
318 web_resources[i].url = resource_infos[i].url; 320 web_resources[i].url = resource_infos[i].url;
319 } 321 }
320 resources->swap(web_resources); 322 resources->swap(web_resources);
321 } 323 }
322 324
323 } // namespace content 325 } // namespace content
OLDNEW
« no previous file with comments | « content/child/appcache/appcache_backend_proxy.cc ('k') | content/child/background_sync/background_sync_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698