| 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 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 189 long flags, | 188 long flags, |
| 190 PackCallback callback); | 189 PackCallback callback); |
| 191 | 190 |
| 192 // Gets localized translated strings for apps_debugger. It returns the | 191 // Gets localized translated strings for apps_debugger. It returns the |
| 193 // strings as a dictionary mapping from string identifier to the | 192 // strings as a dictionary mapping from string identifier to the |
| 194 // translated string to use in the apps_debugger app UI. | 193 // translated string to use in the apps_debugger app UI. |
| 195 static void getStrings(GetStringsCallback callback); | 194 static void getStrings(GetStringsCallback callback); |
| 196 }; | 195 }; |
| 197 | 196 |
| 198 }; | 197 }; |
| OLD | NEW |