blob: 82c86521eb49f3082f8e11cb4d28a3557d13384f [file] [log] [blame]
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/app/chrome_main_mac.h"
#import <Cocoa/Cocoa.h>
#include <string>
#include "base/command_line.h"
#include "base/files/file_path.h"
#import "base/mac/bundle_locations.h"
#import "base/mac/foundation_util.h"
#include "base/path_service.h"
#include "base/strings/string_util.h"
#include "base/strings/sys_string_conversions.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths_internal.h"
#include "content/public/common/content_paths.h"
#include "content/public/common/content_switches.h"
void SetUpBundleOverrides() {
@autoreleasepool {
base::mac::SetOverrideFrameworkBundlePath(chrome::GetFrameworkBundlePath());
NSBundle* base_bundle = chrome::OuterAppBundle();
base::mac::SetBaseBundleID([[base_bundle bundleIdentifier] UTF8String]);
base::FilePath child_exe_path =
chrome::GetFrameworkBundlePath().Append("Helpers").Append(
chrome::kHelperProcessExecutablePath);
// On the Mac, the child executable lives at a predefined location within
// the app bundle's versioned directory.
base::PathService::Override(content::CHILD_PROCESS_EXE, child_exe_path);
}
}
bool IsAlertsHelperLaunchedViaNotificationAction() {
// We allow the main Chrome app to be launched via a notification action. We
// detect and log that to UMA by checking the passed in NSNotification in
// -applicationDidFinishLaunching: (//chrome/browser/app_controller_mac.mm).
if (!base::mac::IsBackgroundOnlyProcess())
return false;
// If we have a process type then we were not launched by the system.
if (base::CommandLine::ForCurrentProcess()->HasSwitch(switches::kProcessType))
return false;
base::FilePath path;
if (!base::PathService::Get(base::FILE_EXE, &path))
return false;
// Check if our executable name matches the helper app for notifications.
std::string helper_name = path.BaseName().value();
return base::EndsWith(helper_name, chrome::kMacHelperSuffixAlerts);
}