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 #ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ | 5 #ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ |
6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ | 6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ |
7 | 7 |
| 8 #include "apps/shell_integration.h" |
8 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
9 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
10 #include "base/string16.h" | 11 #include "base/string16.h" |
11 #include "chrome/browser/shell_integration.h" | |
12 | 12 |
13 #ifdef __OBJC__ | 13 #ifdef __OBJC__ |
14 @class NSDictionary; | 14 @class NSDictionary; |
15 @class NSString; | 15 @class NSString; |
16 #else // __OBJC__ | 16 #else // __OBJC__ |
17 class NSDictionary; | 17 class NSDictionary; |
18 class NSString; | 18 class NSString; |
19 #endif // __OBJC__ | 19 #endif // __OBJC__ |
20 | 20 |
21 namespace web_app { | 21 namespace web_app { |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 // Information about the app. | 72 // Information about the app. |
73 ShellIntegration::ShortcutInfo info_; | 73 ShellIntegration::ShortcutInfo info_; |
74 | 74 |
75 // The CFBundleIdentifier of the Chrome browser bundle. | 75 // The CFBundleIdentifier of the Chrome browser bundle. |
76 string16 chrome_bundle_id_; | 76 string16 chrome_bundle_id_; |
77 }; | 77 }; |
78 | 78 |
79 } // namespace web_app | 79 } // namespace web_app |
80 | 80 |
81 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ | 81 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ |
OLD | NEW |