OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 "chrome/plugin/webplugin_proxy.h" | 5 #include "chrome/plugin/webplugin_proxy.h" |
6 | 6 |
7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
8 | 8 |
9 #include "app/gfx/canvas.h" | 9 #include "app/gfx/canvas.h" |
10 #if defined(OS_WIN) | 10 #if defined(OS_WIN) |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
250 InvalidateRect(damaged_rect_); | 250 InvalidateRect(damaged_rect_); |
251 } | 251 } |
252 | 252 |
253 void WebPluginProxy::OnResourceCreated(int resource_id, | 253 void WebPluginProxy::OnResourceCreated(int resource_id, |
254 WebPluginResourceClient* client) { | 254 WebPluginResourceClient* client) { |
255 DCHECK(resource_clients_.find(resource_id) == resource_clients_.end()); | 255 DCHECK(resource_clients_.find(resource_id) == resource_clients_.end()); |
256 resource_clients_[resource_id] = client; | 256 resource_clients_[resource_id] = client; |
257 } | 257 } |
258 | 258 |
259 void WebPluginProxy::HandleURLRequest(const char* url, | 259 void WebPluginProxy::HandleURLRequest(const char* url, |
260 const char *method, | 260 const char* method, |
261 const char* target, | 261 const char* target, |
262 const char* buf, | 262 const char* buf, |
263 unsigned int len, | 263 unsigned int len, |
264 int notify_id, | 264 int notify_id, |
265 bool popups_allowed) { | 265 bool popups_allowed) { |
266 if (!target && (0 == base::strcasecmp(method, "GET"))) { | 266 if (!target && (0 == base::strcasecmp(method, "GET"))) { |
267 // Please refer to https://bugzilla.mozilla.org/show_bug.cgi?id=366082 | 267 // Please refer to https://bugzilla.mozilla.org/show_bug.cgi?id=366082 |
268 // for more details on this. | 268 // for more details on this. |
269 if (delegate_->GetQuirks() & | 269 if (delegate_->GetQuirks() & |
270 WebPluginDelegateImpl::PLUGIN_QUIRK_BLOCK_NONSTANDARD_GETURL_REQUESTS) { | 270 WebPluginDelegateImpl::PLUGIN_QUIRK_BLOCK_NONSTANDARD_GETURL_REQUESTS) { |
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
577 while (index != resource_clients_.end()) { | 577 while (index != resource_clients_.end()) { |
578 WebPluginResourceClient* client = (*index).second; | 578 WebPluginResourceClient* client = (*index).second; |
579 | 579 |
580 if (client == resource_client) { | 580 if (client == resource_client) { |
581 resource_clients_.erase(index++); | 581 resource_clients_.erase(index++); |
582 } else { | 582 } else { |
583 index++; | 583 index++; |
584 } | 584 } |
585 } | 585 } |
586 } | 586 } |
OLD | NEW |