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

Unified Diff: chrome/browser/cocoa/cocoa_test_helper.h

Issue 660213: [Mac] Make CocoaTest::TearDown() more scalable in the face of valgrind. (Closed)
Patch Set: get rid of last bit of royalty. the world is a dark and bitter place. Created 10 years, 10 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 | chrome/browser/cocoa/cocoa_test_helper.mm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/cocoa/cocoa_test_helper.h
diff --git a/chrome/browser/cocoa/cocoa_test_helper.h b/chrome/browser/cocoa/cocoa_test_helper.h
index 5f51c543149445c4b1375826c79d9ceee8b580c9..7ef1775355a866950e6af00bab8453d979133e83 100644
--- a/chrome/browser/cocoa/cocoa_test_helper.h
+++ b/chrome/browser/cocoa/cocoa_test_helper.h
@@ -81,16 +81,22 @@ class CocoaTest : public PlatformTest {
CocoaTestHelperWindow* test_window();
private:
- // Return a vector of currently open windows. Note that it is a vector
- // instead of an NSArray because we don't want any retains placed on the
- // windows in it and that the windows in this list may no longer be valid
- // NSWindows any time after this returns. You can only use the pointer values
- // in the vector for comparison purposes.
- static std::vector<NSWindow*> ApplicationWindows();
+ // Return a set of currently open windows. Avoiding NSArray so
+ // contents aren't retained, the pointer values can only be used for
+ // comparison purposes. Using std::set to make progress-checking
+ // convenient.
+ static std::set<NSWindow*> ApplicationWindows();
+
+ // Return a set of windows which are in |ApplicationWindows()| but
+ // not |initial_windows_|.
+ std::set<NSWindow*> WindowsLeft();
bool called_tear_down_;
base::ScopedNSAutoreleasePool pool_;
- std::vector<NSWindow*> initial_windows_;
+
+ // Windows which existed at the beginning of the test.
+ std::set<NSWindow*> initial_windows_;
+
// Strong. Lazily created. This isn't wrapped in a scoped_nsobject because
// we want to call [close] to destroy it rather than calling [release]. We
// want to verify that [close] is actually removing our window and that it's
« no previous file with comments | « no previous file | chrome/browser/cocoa/cocoa_test_helper.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698