1// Copyright 2013 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef CONTENT_SHELL_APP_PATHS_MAC_H_
6#define CONTENT_SHELL_APP_PATHS_MAC_H_
7
8namespace base {
9class FilePath;
10}
11
12// Sets up base::mac::FrameworkBundle.
13void OverrideFrameworkBundlePath();
14
15// Sets up the CHILD_PROCESS_EXE path to properly point to the helper app.
16void OverrideChildProcessPath();
17
18// Gets the path to the content shell's pak file.
19base::FilePath GetResourcesPakFilePath();
20
21// Gets the path to content shell's Info.plist file.
22base::FilePath GetInfoPlistPath();
23
24#endif  // CONTENT_SHELL_APP_PATHS_MAC_H_
25