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

Side by Side Diff: third_party/WebKit/Source/core/loader/appcache/ApplicationCacheHost.cpp

Issue 1571233003: Fix errors caused by unsafe conversions to/from size_t (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: improved ALLOW_NUMERIC_ARG_TYPES_PROMOTABLE_TO Created 4 years, 11 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 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 } 127 }
128 128
129 void ApplicationCacheHost::didReceiveResponseForMainResource(const ResourceRespo nse& response) 129 void ApplicationCacheHost::didReceiveResponseForMainResource(const ResourceRespo nse& response)
130 { 130 {
131 if (m_host) { 131 if (m_host) {
132 WrappedResourceResponse wrapped(response); 132 WrappedResourceResponse wrapped(response);
133 m_host->didReceiveResponseForMainResource(wrapped); 133 m_host->didReceiveResponseForMainResource(wrapped);
134 } 134 }
135 } 135 }
136 136
137 void ApplicationCacheHost::mainResourceDataReceived(const char* data, unsigned l ength) 137 void ApplicationCacheHost::mainResourceDataReceived(const char* data, size_t len gth)
138 { 138 {
139 if (m_host) 139 if (m_host)
140 m_host->didReceiveDataForMainResource(data, length); 140 m_host->didReceiveDataForMainResource(data, length);
141 } 141 }
142 142
143 void ApplicationCacheHost::failedLoadingMainResource() 143 void ApplicationCacheHost::failedLoadingMainResource()
144 { 144 {
145 if (m_host) 145 if (m_host)
146 m_host->didFinishLoadingMainResource(false); 146 m_host->didFinishLoadingMainResource(false);
147 } 147 }
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 notifyApplicationCache(ERROR_EVENT, 0, 0, reason, url.string(), status, mess age); 290 notifyApplicationCache(ERROR_EVENT, 0, 0, reason, url.string(), status, mess age);
291 } 291 }
292 292
293 DEFINE_TRACE(ApplicationCacheHost) 293 DEFINE_TRACE(ApplicationCacheHost)
294 { 294 {
295 visitor->trace(m_domApplicationCache); 295 visitor->trace(m_domApplicationCache);
296 visitor->trace(m_documentLoader); 296 visitor->trace(m_documentLoader);
297 } 297 }
298 298
299 } // namespace blink 299 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698