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

Unified Diff: chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm

Issue 9904003: Fix some grammar in chrome/browser/ui/cocoa (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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/ui/cocoa/content_settings/cookie_details.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm
diff --git a/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm b/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm
index b62ef8b003366346ec2889edca2ad11b12ecd1b8..5e264bf01cee38b1c75b4d0f309d8ee5fce9612c 100644
--- a/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm
+++ b/chrome/browser/ui/cocoa/applescript/bookmark_folder_applescript_unittest.mm
@@ -51,7 +51,7 @@ TEST_F(BookmarkFolderAppleScriptTest, InsertBookmarkFolder) {
[bookmarkFolder.get() setTitle:@"foo"];
[bookmarkBar_.get() insertInBookmarkFolders:bookmarkFolder.get()];
- // Represents the bookmark folder after its added.
+ // Represents the bookmark folder after it's added.
BookmarkFolderAppleScript* bf =
[[bookmarkBar_.get() bookmarkFolders] objectAtIndex:2];
EXPECT_NSEQ(@"foo", [bf title]);
@@ -72,7 +72,7 @@ TEST_F(BookmarkFolderAppleScriptTest, InsertBookmarkFolderAtPosition) {
[bookmarkFolder.get() setTitle:@"foo"];
[bookmarkBar_.get() insertInBookmarkFolders:bookmarkFolder.get() atIndex:1];
- // Represents the bookmark folder after its added.
+ // Represents the bookmark folder after it's added.
BookmarkFolderAppleScript* bf =
[[bookmarkBar_.get() bookmarkFolders] objectAtIndex:1];
EXPECT_NSEQ(@"foo", [bf title]);
@@ -126,7 +126,7 @@ TEST_F(BookmarkFolderAppleScriptTest, InsertBookmarkItem) {
[bookmarkItem.get() setURL:@"http://google.com"];
[bookmarkBar_.get() insertInBookmarkItems:bookmarkItem.get()];
- // Represents the bookmark item after its added.
+ // Represents the bookmark item after it's added.
BookmarkItemAppleScript* bi =
[[bookmarkBar_.get() bookmarkItems] objectAtIndex:3];
EXPECT_NSEQ(@"Google", [bi title]);
« no previous file with comments | « no previous file | chrome/browser/ui/cocoa/content_settings/cookie_details.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698