OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // On Mac, one can't make shortcuts with command-line arguments. Instead, we | 5 // On Mac, one can't make shortcuts with command-line arguments. Instead, we |
6 // produce small app bundles which locate the Chromium framework and load it, | 6 // produce small app bundles which locate the Chromium framework and load it, |
7 // passing the appropriate data. This is the entry point into the framework for | 7 // passing the appropriate data. This is the entry point into the framework for |
8 // those app bundles. | 8 // those app bundles. |
9 | 9 |
10 #include <string> // TODO(viettrungluu): only needed for temporary hack | 10 #include <string> // TODO(viettrungluu): only needed for temporary hack |
11 | 11 |
12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
13 #include "base/command_line.h" | |
13 #include "base/file_path.h" | 14 #include "base/file_path.h" |
14 #include "base/logging.h" | 15 #include "base/logging.h" |
15 #include "base/mac/bundle_locations.h" | 16 #include "base/mac/bundle_locations.h" |
16 #include "chrome/common/chrome_constants.h" | 17 #include "chrome/common/chrome_constants.h" |
17 #include "chrome/common/chrome_paths_internal.h" | 18 #include "chrome/common/chrome_paths_internal.h" |
19 #include "chrome/common/chrome_switches.h" | |
18 #include "chrome/common/mac/app_mode_common.h" | 20 #include "chrome/common/mac/app_mode_common.h" |
19 | 21 |
20 extern "C" { | 22 extern "C" { |
21 | 23 |
22 // |ChromeAppModeStart()| is the point of entry into the framework from the app | 24 // |ChromeAppModeStart()| is the point of entry into the framework from the app |
23 // mode loader. | 25 // mode loader. |
24 __attribute__((visibility("default"))) | 26 __attribute__((visibility("default"))) |
25 int ChromeAppModeStart(const app_mode::ChromeAppModeInfo* info); | 27 int ChromeAppModeStart(const app_mode::ChromeAppModeInfo* info); |
26 | 28 |
27 // TODO(viettrungluu): put this in a header file somewhere. | 29 // TODO(viettrungluu): put this in a header file somewhere. |
(...skipping 13 matching lines...) Expand all Loading... | |
41 | 43 |
42 RAW_CHECK(!info->chrome_versioned_path.empty()); | 44 RAW_CHECK(!info->chrome_versioned_path.empty()); |
43 FilePath* chrome_versioned_path = new FilePath(info->chrome_versioned_path); | 45 FilePath* chrome_versioned_path = new FilePath(info->chrome_versioned_path); |
44 RAW_CHECK(!chrome_versioned_path->empty()); | 46 RAW_CHECK(!chrome_versioned_path->empty()); |
45 chrome::SetOverrideVersionedDirectory(chrome_versioned_path); | 47 chrome::SetOverrideVersionedDirectory(chrome_versioned_path); |
46 | 48 |
47 base::mac::SetOverrideOuterBundlePath(info->chrome_outer_bundle_path); | 49 base::mac::SetOverrideOuterBundlePath(info->chrome_outer_bundle_path); |
48 base::mac::SetOverrideFrameworkBundlePath( | 50 base::mac::SetOverrideFrameworkBundlePath( |
49 chrome_versioned_path->Append(chrome::kFrameworkName)); | 51 chrome_versioned_path->Append(chrome::kFrameworkName)); |
50 | 52 |
51 // TODO(viettrungluu): do something intelligent with data | 53 CommandLine command_line(CommandLine::NO_PROGRAM); |
52 // return ChromeMain(info->argc, info->argv); | 54 command_line.AppendSwitch(info->argv[0]); |
53 // For now, a cheesy hack instead. | |
54 RAW_CHECK(info->app_mode_id.size()); | 55 RAW_CHECK(info->app_mode_id.size()); |
55 std::string argv1(std::string("--app-id=") + info->app_mode_id); | 56 command_line.AppendSwitchASCII(switches::kAppId, info->app_mode_id); |
56 std::string argv2( | 57 command_line.AppendSwitchPath(switches::kUserDataDir, info->user_data_dir); |
57 std::string("--user-data-dir=") + info->user_data_dir.value()); | 58 // TODO(sail): Use a different flag that doesn't imply Location::LOAD for the |
58 char* argv[] = { info->argv[0], | 59 // extension. |
59 const_cast<char*>(argv1.c_str()), | 60 command_line.AppendSwitchPath(switches::kLoadExtension, info->extension_path); |
60 const_cast<char*>(argv2.c_str()) }; | 61 |
61 return ChromeMain(static_cast<int>(arraysize(argv)), argv); | 62 int argc = command_line.argv().size(); |
63 char* argv[argc]; | |
64 for (int i = 0; i < argc; ++i) | |
65 argv[i] = const_cast<char*>(command_line.argv()[i].c_str()); | |
Robert Sesek
2012/02/23 01:23:47
Why do you need this const cast? Can't the array b
sail
2012/02/23 04:19:40
Currently all ChromeMain and ContentMain accept (i
| |
66 | |
67 return ChromeMain(argc, argv); | |
62 } | 68 } |
OLD | NEW |