| 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 <stddef.h> |
| 9 |
| 8 #include <string> | 10 #include <string> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 11 #include "base/basictypes.h" | |
| 12 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
| 13 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" | 16 #include "base/memory/scoped_ptr.h" |
| 15 #include "chrome/browser/web_applications/web_app.h" | 17 #include "chrome/browser/web_applications/web_app.h" |
| 16 #include "extensions/common/manifest_handlers/file_handler_info.h" | 18 #include "extensions/common/manifest_handlers/file_handler_info.h" |
| 17 | 19 |
| 18 namespace base { | 20 namespace base { |
| 19 class CommandLine; | 21 class CommandLine; |
| 20 } | 22 } |
| 21 | 23 |
| 22 // Whether to enable update and launch of app shims in tests. (Normally shims | 24 // Whether to enable update and launch of app shims in tests. (Normally shims |
| 23 // are never created or launched in tests). Note that update only creates | 25 // are never created or launched in tests). Note that update only creates |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 127 | 129 |
| 128 // The app's file handlers. | 130 // The app's file handlers. |
| 129 extensions::FileHandlersInfo file_handlers_info_; | 131 extensions::FileHandlersInfo file_handlers_info_; |
| 130 | 132 |
| 131 DISALLOW_COPY_AND_ASSIGN(WebAppShortcutCreator); | 133 DISALLOW_COPY_AND_ASSIGN(WebAppShortcutCreator); |
| 132 }; | 134 }; |
| 133 | 135 |
| 134 } // namespace web_app | 136 } // namespace web_app |
| 135 | 137 |
| 136 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ | 138 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_MAC_H_ |
| OLD | NEW |