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 8 namespace base { 9 class FilePath; 10 } 11 12 // Sets up base::mac::FrameworkBundle. 13 void OverrideFrameworkBundlePath(); 14 15 // Sets up the CHILD_PROCESS_EXE path to properly point to the helper app. 16 void OverrideChildProcessPath(); 17 18 // Gets the path to the content shell's pak file. 19 base::FilePath GetResourcesPakFilePath(); 20 21 // Gets the path to content shell's Info.plist file. 22 base::FilePath GetInfoPlistPath(); 23 24 #endif // CONTENT_SHELL_APP_PATHS_MAC_H_ 25