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

Side by Side Diff: webkit/glue/plugins/webplugin_delegate_impl_gtk.cc

Issue 155727: Fix a crash in plugin handling. The code was destroying the passed-in cairo_t... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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/glue/plugins/webplugin_delegate_impl.h" 5 #include "webkit/glue/plugins/webplugin_delegate_impl.h"
6 6
7 #include <string> 7 #include <string>
8 #include <vector> 8 #include <vector>
9 9
10 #include <gtk/gtk.h> 10 #include <gtk/gtk.h>
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 StatsScope<StatsRate> scope(plugin_paint); 550 StatsScope<StatsRate> scope(plugin_paint);
551 NPError err = instance()->NPP_HandleEvent(&np_event); 551 NPError err = instance()->NPP_HandleEvent(&np_event);
552 DCHECK_EQ(err, NPERR_NO_ERROR); 552 DCHECK_EQ(err, NPERR_NO_ERROR);
553 553
554 // Now copy the rendered image pixmap back into the drawing buffer. 554 // Now copy the rendered image pixmap back into the drawing buffer.
555 gdk_cairo_set_source_pixmap(context, pixmap_, -offset_x, -offset_y); 555 gdk_cairo_set_source_pixmap(context, pixmap_, -offset_x, -offset_y);
556 cairo_rectangle(context, draw_rect.x(), draw_rect.y(), 556 cairo_rectangle(context, draw_rect.x(), draw_rect.y(),
557 draw_rect.width(), draw_rect.height()); 557 draw_rect.width(), draw_rect.height());
558 cairo_clip(context); 558 cairo_clip(context);
559 cairo_paint(context); 559 cairo_paint(context);
560 cairo_destroy(context);
Evan Martin 2009/07/18 00:51:41 i apologize for this code, it makes absolutely no
561 560
562 #ifdef DEBUG_RECTANGLES 561 #ifdef DEBUG_RECTANGLES
563 // Draw some debugging rectangles. 562 // Draw some debugging rectangles.
564 // Pixmap rect = blue. 563 // Pixmap rect = blue.
565 DrawDebugRectangle(context, pixmap_rect, 0, 0, 1); 564 DrawDebugRectangle(context, pixmap_rect, 0, 0, 1);
566 // Drawing rect = red. 565 // Drawing rect = red.
567 DrawDebugRectangle(context, draw_rect, 1, 0, 0); 566 DrawDebugRectangle(context, draw_rect, 1, 0, 0);
568 #endif 567 #endif
569 } 568 }
570 569
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
845 return stream; 844 return stream;
846 } 845 }
847 846
848 void WebPluginDelegateImpl::URLRequestRouted(const std::string&url, 847 void WebPluginDelegateImpl::URLRequestRouted(const std::string&url,
849 bool notify_needed, 848 bool notify_needed,
850 intptr_t notify_data) { 849 intptr_t notify_data) {
851 if (notify_needed) { 850 if (notify_needed) {
852 instance()->SetURLLoadData(GURL(url.c_str()), notify_data); 851 instance()->SetURLLoadData(GURL(url.c_str()), notify_data);
853 } 852 }
854 } 853 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698