Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: extensions/shell/app/paths_mac.mm

Issue 745093002: AppShell support for Mac. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: minors Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « extensions/shell/app/paths_mac.h ('k') | extensions/shell/app/shell_main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 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 #include "extensions/shell/app/paths_mac.h"
6
7 #include "base/files/file_path.h"
8 #include "base/logging.h"
9 #include "base/path_service.h"
10 #include "base/mac/bundle_locations.h"
11 #include "base/mac/foundation_util.h"
12 #include "content/public/common/content_paths.h"
13
14 namespace extensions {
15
16 namespace {
17
18 base::FilePath GetFrameworksPath() {
19 base::FilePath path;
20 PathService::Get(base::FILE_EXE, &path);
21 // We now have a path .../App Shell.app/Contents/MacOS/App Shell, and want to
22 // transform it into
23 // .../App Shell.app/Contents/Frameworks/App Shell Framework.framework.
24 // But if it's App Shell Helper.app (inside Frameworks), we must go deeper.
25 if (base::mac::IsBackgroundOnlyProcess()) {
26 path = path.DirName().DirName().DirName().DirName().DirName();
27 } else {
28 path = path.DirName().DirName();
29 }
30 DCHECK_EQ("Contents", path.BaseName().value());
31 path = path.Append("Frameworks");
32 return path;
33 }
34
35 } // namespace
36
37 void OverrideFrameworkBundlePath() {
38 base::FilePath path =
39 GetFrameworksPath().Append("App Shell Framework.framework");
40 base::mac::SetOverrideFrameworkBundlePath(path);
41 }
42
43 void OverrideChildProcessFilePath() {
44 base::FilePath path = GetFrameworksPath()
45 .Append("App Shell Helper.app")
46 .Append("Contents")
47 .Append("MacOS")
48 .Append("App Shell Helper");
49 PathService::Override(content::CHILD_PROCESS_EXE, path);
50 }
51
52 } // namespace extensions
OLDNEW
« no previous file with comments | « extensions/shell/app/paths_mac.h ('k') | extensions/shell/app/shell_main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698