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

Unified Diff: base/message_pump_mac.h

Issue 343024: Cleans up our autorelease handling so that we don't create a layered ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/message_pump_mac.mm » ('j') | base/message_pump_mac.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/message_pump_mac.h
===================================================================
--- base/message_pump_mac.h (revision 30592)
+++ base/message_pump_mac.h (working copy)
@@ -1,4 +1,4 @@
-// Copyright (c) 2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2009 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -35,6 +35,13 @@
#include <CoreFoundation/CoreFoundation.h>
#include <IOKit/IOKitLib.h>
+#if defined(__OBJC__)
+@class NSAutoreleasePool;
+#else // __OBJC__
+class NSAutoreleasePool;
+#endif // __OBJC__
+
+
namespace base {
class Time;
@@ -60,6 +67,10 @@
int nesting_level() const { return nesting_level_; }
int run_nesting_level() const { return run_nesting_level_; }
+ // Factory method for creating an autorelease pool. Not all message
+ // pumps work with autorelease pools in the same way.
+ virtual NSAutoreleasePool* CreateAutoreleasePool();
+
private:
// Timer callback scheduled by ScheduleDelayedWork. This does not do any
// work, but it signals delayed_work_source_ so that delayed work can be
@@ -223,13 +234,32 @@
};
class MessagePumpNSApplication : public MessagePumpCFRunLoopBase {
+ // ObjC objects and C++ objects can't be friends, so this C function
Mark Mentovai 2009/10/30 21:47:04 remove letter C
+ // will act as a friendly trampoline for
+ // MessagePumpNSAppDeferredAutoReleasePool to call
+ // set_needs_event_loop_wakeup.
+ friend void SetNeedsEventLoopWakeUpTrue(MessagePumpNSApplication* pump);
+
public:
MessagePumpNSApplication();
virtual void DoRun(Delegate* delegate);
virtual void Quit();
+ protected:
+ // MessagePumpNSApplications need a special autorelease pool that works
+ // correctly when nested inside another autorelease pool.
+ virtual NSAutoreleasePool* CreateAutoreleasePool();
+ void set_needs_event_loop_wakeup_true() {
+ needs_event_loop_wake_up_ = true;
+ }
+
private:
+ virtual void EnterExitRunLoop(CFRunLoopActivity activity);
+
+ // Send a null event through to the event loop if necessary.
+ void WakeUpEventLoop();
+
// False after Quit is called.
bool keep_running_;
@@ -239,6 +269,10 @@
// in DoRun.
bool running_own_loop_;
+ // True if an event should be sent to the event loop to cause it to spin
+ // when the run loop is exiting.
+ bool needs_event_loop_wake_up_;
+
DISALLOW_COPY_AND_ASSIGN(MessagePumpNSApplication);
};
« no previous file with comments | « no previous file | base/message_pump_mac.mm » ('j') | base/message_pump_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698