| 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 // developerPrivate API. | 5 // developerPrivate API. |
| 6 // This is a private API exposing developing and debugging functionalities for | 6 // This is a private API exposing developing and debugging functionalities for |
| 7 // apps and extensions. | 7 // apps and extensions. |
| 8 | |
| 9 namespace developerPrivate { | 8 namespace developerPrivate { |
| 10 | 9 |
| 11 enum ItemType { | 10 enum ItemType { |
| 12 hosted_app, | 11 hosted_app, |
| 13 packaged_app, | 12 packaged_app, |
| 14 legacy_packaged_app, | 13 legacy_packaged_app, |
| 15 extension, | 14 extension, |
| 16 theme | 15 theme |
| 17 }; | 16 }; |
| 18 | 17 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 long flags, | 181 long flags, |
| 183 PackCallback callback); | 182 PackCallback callback); |
| 184 | 183 |
| 185 // Gets localized translated strings for apps_debugger. It returns the | 184 // Gets localized translated strings for apps_debugger. It returns the |
| 186 // strings as a dictionary mapping from string identifier to the | 185 // strings as a dictionary mapping from string identifier to the |
| 187 // translated string to use in the apps_debugger app UI. | 186 // translated string to use in the apps_debugger app UI. |
| 188 static void getStrings(GetStringsCallback callback); | 187 static void getStrings(GetStringsCallback callback); |
| 189 }; | 188 }; |
| 190 | 189 |
| 191 }; | 190 }; |
| OLD | NEW |