Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | // Copyright (c) 2008 The Chromium Authors. All rights reserved. |
michael@0 | 2 | // Use of this source code is governed by a BSD-style license that can be |
michael@0 | 3 | // found in the LICENSE file. |
michael@0 | 4 | |
michael@0 | 5 | #include "base/mac_util.h" |
michael@0 | 6 | |
michael@0 | 7 | #include <Carbon/Carbon.h> |
michael@0 | 8 | #import <Cocoa/Cocoa.h> |
michael@0 | 9 | |
michael@0 | 10 | #include "base/file_path.h" |
michael@0 | 11 | #include "base/logging.h" |
michael@0 | 12 | #include "base/scoped_cftyperef.h" |
michael@0 | 13 | #include "base/sys_string_conversions.h" |
michael@0 | 14 | |
michael@0 | 15 | namespace mac_util { |
michael@0 | 16 | |
michael@0 | 17 | // Adapted from http://developer.apple.com/carbon/tipsandtricks.html#AmIBundled |
michael@0 | 18 | bool AmIBundled() { |
michael@0 | 19 | ProcessSerialNumber psn = {0, kCurrentProcess}; |
michael@0 | 20 | |
michael@0 | 21 | FSRef fsref; |
michael@0 | 22 | if (GetProcessBundleLocation(&psn, &fsref) != noErr) |
michael@0 | 23 | return false; |
michael@0 | 24 | |
michael@0 | 25 | FSCatalogInfo info; |
michael@0 | 26 | if (FSGetCatalogInfo(&fsref, kFSCatInfoNodeFlags, &info, |
michael@0 | 27 | NULL, NULL, NULL) != noErr) { |
michael@0 | 28 | return false; |
michael@0 | 29 | } |
michael@0 | 30 | |
michael@0 | 31 | return info.nodeFlags & kFSNodeIsDirectoryMask; |
michael@0 | 32 | } |
michael@0 | 33 | |
michael@0 | 34 | } // namespace mac_util |