| 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 "content/browser/web_contents/web_contents_impl.h" | 5 #include "content/browser/web_contents/web_contents_impl.h" |
| 6 | 6 |
| 7 #include <utility> | 7 #include <utility> |
| 8 | 8 |
| 9 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 10 #include "base/debug/trace_event.h" | 10 #include "base/debug/trace_event.h" |
| (...skipping 2493 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2504 browser_plugin_embedder_.reset(BrowserPluginEmbedder::Create(this)); | 2504 browser_plugin_embedder_.reset(BrowserPluginEmbedder::Create(this)); |
| 2505 browser_plugin_embedder_->OnMessageReceived(message); | 2505 browser_plugin_embedder_->OnMessageReceived(message); |
| 2506 } | 2506 } |
| 2507 | 2507 |
| 2508 void WebContentsImpl::OnDidDownloadImage( | 2508 void WebContentsImpl::OnDidDownloadImage( |
| 2509 int id, | 2509 int id, |
| 2510 int http_status_code, | 2510 int http_status_code, |
| 2511 const GURL& image_url, | 2511 const GURL& image_url, |
| 2512 const std::vector<SkBitmap>& bitmaps, | 2512 const std::vector<SkBitmap>& bitmaps, |
| 2513 const std::vector<gfx::Size>& original_bitmap_sizes) { | 2513 const std::vector<gfx::Size>& original_bitmap_sizes) { |
| 2514 if (bitmaps.size() != original_bitmap_sizes.size()) { | |
| 2515 GetRenderProcessHost()->ReceivedBadMessage(); | |
| 2516 return; | |
| 2517 } | |
| 2518 | |
| 2519 ImageDownloadMap::iterator iter = image_download_map_.find(id); | 2514 ImageDownloadMap::iterator iter = image_download_map_.find(id); |
| 2520 if (iter == image_download_map_.end()) { | 2515 if (iter == image_download_map_.end()) { |
| 2521 // Currently WebContents notifies us of ANY downloads so that it is | 2516 // Currently WebContents notifies us of ANY downloads so that it is |
| 2522 // possible to get here. | 2517 // possible to get here. |
| 2523 return; | 2518 return; |
| 2524 } | 2519 } |
| 2525 if (!iter->second.is_null()) { | 2520 if (!iter->second.is_null()) { |
| 2526 iter->second.Run( | 2521 iter->second.Run( |
| 2527 id, http_status_code, image_url, bitmaps, original_bitmap_sizes); | 2522 id, http_status_code, image_url, bitmaps, original_bitmap_sizes); |
| 2528 } | 2523 } |
| (...skipping 1315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3844 } | 3839 } |
| 3845 | 3840 |
| 3846 void WebContentsImpl::OnFrameRemoved( | 3841 void WebContentsImpl::OnFrameRemoved( |
| 3847 RenderViewHostImpl* render_view_host, | 3842 RenderViewHostImpl* render_view_host, |
| 3848 int64 frame_id) { | 3843 int64 frame_id) { |
| 3849 FOR_EACH_OBSERVER(WebContentsObserver, observers_, | 3844 FOR_EACH_OBSERVER(WebContentsObserver, observers_, |
| 3850 FrameDetached(render_view_host, frame_id)); | 3845 FrameDetached(render_view_host, frame_id)); |
| 3851 } | 3846 } |
| 3852 | 3847 |
| 3853 } // namespace content | 3848 } // namespace content |
| OLD | NEW |