summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/cocoa_test_helper.h
diff options
context:
space:
mode:
authorshess@chromium.org <shess@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-08 00:29:31 +0000
committershess@chromium.org <shess@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-08 00:29:31 +0000
commit4baf07d22b9104c1d4fdb3ef8dfe01d6f43b5a30 (patch)
tree530e8b348bf1e1b0e9a170348b48e76466fb9904 /chrome/browser/cocoa/cocoa_test_helper.h
parent32ea48ecd3fb3e57413795523f0c67752f5e73f1 (diff)
downloadchromium_src-4baf07d22b9104c1d4fdb3ef8dfe01d6f43b5a30.zip
chromium_src-4baf07d22b9104c1d4fdb3ef8dfe01d6f43b5a30.tar.gz
chromium_src-4baf07d22b9104c1d4fdb3ef8dfe01d6f43b5a30.tar.bz2
Revert "[Mac] Window titles for Expose."
Revert r28350 aka http://codereview.chromium.org/259023 Passed the trybots because of DCHECK which wasn't there for build bots. TBR=zork Review URL: http://codereview.chromium.org/271015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28356 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/cocoa_test_helper.h')
-rw-r--r--chrome/browser/cocoa/cocoa_test_helper.h23
1 files changed, 7 insertions, 16 deletions
diff --git a/chrome/browser/cocoa/cocoa_test_helper.h b/chrome/browser/cocoa/cocoa_test_helper.h
index 8eb3438..ebcb4d4 100644
--- a/chrome/browser/cocoa/cocoa_test_helper.h
+++ b/chrome/browser/cocoa/cocoa_test_helper.h
@@ -47,14 +47,9 @@
// added. If your test wants one, it can derive from PlatformTest instead of
// testing::Test.
-// Provides the Cocoa goodness without the extraneous window.
-// TODO(shess): It might make more sense to have CocoaTest as a
-// PlatformTest subclass which adds the Cocoa magic, then
-// CocoaViewTest as a further subclass which provides a convenience
-// window.
-class CocoaNoWindowTestHelper {
+class CocoaTestHelper {
public:
- CocoaNoWindowTestHelper() {
+ CocoaTestHelper() {
// Look in the framework bundle for resources.
FilePath path;
PathService::Get(base::DIR_EXE, &path);
@@ -67,21 +62,17 @@ class CocoaNoWindowTestHelper {
// Bootstrap Cocoa. It's very unhappy without this.
[NSApplication sharedApplication];
- // Set the duration of AppKit-evaluated animations (such as frame changes)
- // to zero for testing purposes. That way they take effect immediately.
- [[NSAnimationContext currentContext] setDuration:0.0];
- }
-};
-
-class CocoaTestHelper : public CocoaNoWindowTestHelper {
- public:
- CocoaTestHelper() {
+ // Create a window.
window_.reset([[CocoaTestHelperWindow alloc] init]);
if (DebugUtil::BeingDebugged()) {
[window_ orderFront:nil];
} else {
[window_ orderBack:nil];
}
+
+ // Set the duration of AppKit-evaluated animations (such as frame changes)
+ // to zero for testing purposes. That way they take effect immediately.
+ [[NSAnimationContext currentContext] setDuration:0.0];
}
// Access the Cocoa window created for the test.