summaryrefslogtreecommitdiffstats
path: root/chrome/browser/cocoa/cocoa_test_helper.h
diff options
context:
space:
mode:
authormark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 20:43:24 +0000
committermark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-09-17 20:43:24 +0000
commita05d223dccc3f04067f0a12f8b6b8f60a4dd8290 (patch)
treec7b1cfe39309fb1b62eba750126d2d2c9a27314c /chrome/browser/cocoa/cocoa_test_helper.h
parentbb1d3cabef77556677416988c9293a3b72d9c7cf (diff)
downloadchromium_src-a05d223dccc3f04067f0a12f8b6b8f60a4dd8290.zip
chromium_src-a05d223dccc3f04067f0a12f8b6b8f60a4dd8290.tar.gz
chromium_src-a05d223dccc3f04067f0a12f8b6b8f60a4dd8290.tar.bz2
Fix a few pasteboard-related things in the Mac unit_tests. Most of these
changes are non-functional or minimally functional. There are a couple of functional changes in here too. Hopefully this will resolve some of the Valgrind failures. BUG=21479 TEST=unit_tests Review URL: http://codereview.chromium.org/210006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@26479 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/cocoa/cocoa_test_helper.h')
-rw-r--r--chrome/browser/cocoa/cocoa_test_helper.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/cocoa/cocoa_test_helper.h b/chrome/browser/cocoa/cocoa_test_helper.h
index 7fdcb45..282db9c 100644
--- a/chrome/browser/cocoa/cocoa_test_helper.h
+++ b/chrome/browser/cocoa/cocoa_test_helper.h
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#ifndef CHROME_BROWSER_COCOA_COCOA_TEST_HELPER
-#define CHROME_BROWSER_COCOA_COCOA_TEST_HELPER
+#ifndef CHROME_BROWSER_COCOA_COCOA_TEST_HELPER_H_
+#define CHROME_BROWSER_COCOA_COCOA_TEST_HELPER_H_
#import <Cocoa/Cocoa.h>
@@ -23,7 +23,7 @@
BOOL pretendIsKeyWindow_;
}
-// Init a borderless non-defered window with backing store.
+// Init a borderless non-deferred window with a backing store.
- (id)initWithContentRect:(NSRect)contentRect;
// Init with a default frame.
@@ -44,7 +44,7 @@
// as the bundle. If you do not specify a bundle, your test will likely
// fail.
// It currently does not create an autorelease pool, though that can easily be
-// added. If your test wants one, it can derrive from PlatformTest instead of
+// added. If your test wants one, it can derive from PlatformTest instead of
// testing::Test.
class CocoaTestHelper {
@@ -93,4 +93,4 @@ class CocoaTestHelper {
scoped_nsobject<CocoaTestHelperWindow> window_;
};
-#endif // CHROME_BROWSER_COCOA_COCOA_TEST_HELPER
+#endif // CHROME_BROWSER_COCOA_COCOA_TEST_HELPER_H_