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

Side by Side Diff: apps/app_shim/app_shim_util.h

Issue 14579006: Start app shim when app launched. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | apps/app_shim/app_shim_util_mac.mm » ('j') | apps/app_shim/app_shim_util_mac.mm » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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 APPS_APP_SHIM_APP_SHIM_UTIL_H_
tapted 2013/05/16 04:51:00 this should have a _mac suffix too
6 #define APPS_APP_SHIM_APP_SHIM_UTIL_H_
7
8 #include <string>
9
10 #include "base/callback.h"
11 #include "base/files/file_path.h"
12
13 namespace app_shim {
tapted 2013/05/16 04:51:00 should just be namespace apps. There's some rule;
14
15 // Returns the directory where app shim bundles are stored, or an empty path if
16 // no such path exists (for example, if there is no Applications directory).
17 base::FilePath GetAppShimFolder();
18
19 void FindAndLaunchShimForApp(const std::string& app_id,
20 const std::string& profile_name,
21 base::Callback<void(bool)> completed);
22
23 } // namespace app_shim
24
25 #endif // APPS_APP_SHIM_APP_SHIM_UTIL_H_
OLDNEW
« no previous file with comments | « no previous file | apps/app_shim/app_shim_util_mac.mm » ('j') | apps/app_shim/app_shim_util_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698