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

Side by Side Diff: content/browser/renderer_host/render_widget_host_view_mac.mm

Issue 11416040: [Mac] Prevent ppapi fullscreen window from dealloc while on stack. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 1 month 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
« 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) 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/renderer_host/render_widget_host_view_mac.h" 5 #include "content/browser/renderer_host/render_widget_host_view_mac.h"
6 6
7 #include <QuartzCore/QuartzCore.h> 7 #include <QuartzCore/QuartzCore.h>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 } 721 }
722 722
723 // We've been told to destroy. 723 // We've been told to destroy.
724 [cocoa_view_ retain]; 724 [cocoa_view_ retain];
725 [cocoa_view_ removeFromSuperview]; 725 [cocoa_view_ removeFromSuperview];
726 [cocoa_view_ autorelease]; 726 [cocoa_view_ autorelease];
727 727
728 [fullscreen_window_manager_ exitFullscreenMode]; 728 [fullscreen_window_manager_ exitFullscreenMode];
729 fullscreen_window_manager_.reset(); 729 fullscreen_window_manager_.reset();
730 [pepper_fullscreen_window_ close]; 730 [pepper_fullscreen_window_ close];
731 pepper_fullscreen_window_.reset(); 731 pepper_fullscreen_window_.autorelease();
Robert Sesek 2012/11/16 18:07:43 Ooh. When did this get born?
Robert Sesek 2012/11/16 18:07:43 Does this window have a delegate that the window c
Scott Hess - ex-Googler 2012/11/16 18:17:37 Pretty recent. I had rewritten a piece of code th
Scott Hess - ex-Googler 2012/11/16 18:17:37 AFAICT, no. fullscreen_window_manager_ may have a
sail 2012/11/16 19:59:02 Could you add a comment here saying that on shutdo
732 732
733 // We get this call just before |render_widget_host_| deletes 733 // We get this call just before |render_widget_host_| deletes
734 // itself. But we are owned by |cocoa_view_|, which may be retained 734 // itself. But we are owned by |cocoa_view_|, which may be retained
735 // by some other code. Examples are WebContentsViewMac's 735 // by some other code. Examples are WebContentsViewMac's
736 // |latent_focus_view_| and TabWindowController's 736 // |latent_focus_view_| and TabWindowController's
737 // |cachedContentView_|. 737 // |cachedContentView_|.
738 render_widget_host_ = NULL; 738 render_widget_host_ = NULL;
739 } 739 }
740 740
741 // Called from the renderer to tell us what the tooltip text should be. It 741 // Called from the renderer to tell us what the tooltip text should be. It
(...skipping 2620 matching lines...) Expand 10 before | Expand all | Expand 10 after
3362 if (!string) return NO; 3362 if (!string) return NO;
3363 3363
3364 // If the user is currently using an IME, confirm the IME input, 3364 // If the user is currently using an IME, confirm the IME input,
3365 // and then insert the text from the service, the same as TextEdit and Safari. 3365 // and then insert the text from the service, the same as TextEdit and Safari.
3366 [self confirmComposition]; 3366 [self confirmComposition];
3367 [self insertText:string]; 3367 [self insertText:string];
3368 return YES; 3368 return YES;
3369 } 3369 }
3370 3370
3371 @end 3371 @end
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