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

Side by Side Diff: chrome/common/extensions/api/developer_private.idl

Issue 12996003: Dynamically generate a heading for Extension Docs API pages (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixing up Offline/Online Access - Attempting to rework availability algorithm 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
OLDNEW
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
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 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698