diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-09 22:10:53 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-09 22:10:53 +0000 |
commit | 19b430eadca0069a350558c6fff17cf7fc86dc54 (patch) | |
tree | 28159c5b41c291c4a7200411b643d67221c6d0d5 /base/mac/foundation_util.mm | |
parent | 50b73e39d8714626e825a5458fce755594d60bef (diff) | |
download | chromium_src-19b430eadca0069a350558c6fff17cf7fc86dc54.zip chromium_src-19b430eadca0069a350558c6fff17cf7fc86dc54.tar.gz chromium_src-19b430eadca0069a350558c6fff17cf7fc86dc54.tar.bz2 |
Remove temporary testing junk accidentally included in last commit.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@77531 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/mac/foundation_util.mm')
-rw-r--r-- | base/mac/foundation_util.mm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/base/mac/foundation_util.mm b/base/mac/foundation_util.mm index 7ea2b3a..7a777dd 100644 --- a/base/mac/foundation_util.mm +++ b/base/mac/foundation_util.mm @@ -63,9 +63,7 @@ bool IsBackgroundOnlyProcess() { // at the actual running .app's Info.plist to access its LSBackgroundOnly // property. NSDictionary* info_dictionary = [[NSBundle mainBundle] infoDictionary]; -// return [[info_dictionary objectForKey:@"LSBackgroundOnly"] boolValue] != NO; - return ([[info_dictionary objectForKey:@"LSBackgroundOnly"] boolValue] != NO) || - ([[info_dictionary objectForKey:@"MMForDemo"] boolValue] != NO); + return [[info_dictionary objectForKey:@"LSBackgroundOnly"] boolValue] != NO; } // No threading worries since NSBundle isn't thread safe. |