diff options
author | maf@chromium.org <maf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-17 22:38:08 +0000 |
---|---|---|
committer | maf@chromium.org <maf@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-04-17 22:38:08 +0000 |
commit | 46f438d24ebaaad994920e548728bd1fc8ae039c (patch) | |
tree | d60146f28c9d24c6cac413c45a284184ad4b4b4a /base | |
parent | 7697ff11755d13488b7df2262fb42aaabbdf14cb (diff) | |
download | chromium_src-46f438d24ebaaad994920e548728bd1fc8ae039c.zip chromium_src-46f438d24ebaaad994920e548728bd1fc8ae039c.tar.gz chromium_src-46f438d24ebaaad994920e548728bd1fc8ae039c.tar.bz2 |
Fix some typos.
R=thakis@chromium.org
Review URL: http://codereview.chromium.org/6873038
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81919 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/mac/mac_util.mm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/mac/mac_util.mm b/base/mac/mac_util.mm index cd3a9de..2f93b23 100644 --- a/base/mac/mac_util.mm +++ b/base/mac/mac_util.mm @@ -17,7 +17,7 @@ namespace mac { namespace { -// a count of currently outstanding requests for full screen mode from browser +// The current count of outstanding requests for full screen mode from browser // windows, plugins, etc. int g_full_screen_requests[kNumFullScreenModes] = { 0, 0, 0}; @@ -75,7 +75,7 @@ bool WasLaunchedAsLoginItem() { } // Looks into Shared File Lists corresponding to Login Items for the item -// representing the current application. If such an item is found, returns +// representing the current application. If such an item is found, returns a // retained reference to it. Caller is responsible for releasing the reference. LSSharedFileListItemRef GetLoginItemForApp() { ScopedCFTypeRef<LSSharedFileListRef> login_items(LSSharedFileListCreate( @@ -276,7 +276,7 @@ bool SetFileBackupExclusion(const FilePath& file_path, bool exclude) { bool success = CSBackupSetItemExcluded((CFURLRef)url, exclude, true) == noErr; if (!success) - LOG(WARNING) << "Failed to set backup excluson for file '" + LOG(WARNING) << "Failed to set backup exclusion for file '" << file_path.value().c_str() << "'. Continuing."; return success; } |