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

Side by Side Diff: chrome/browser/resources/settings/android_apps_page/android_apps_browser_proxy.js

Issue 2700783002: s/\bArc\b/ARC/g for ARC related code. (Closed)
Patch Set: Address ARC++ Created 3 years, 10 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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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 /** 5 /**
6 * @fileoverview A helper object used by the "Google Play Store" (Arc++) section 6 * @fileoverview A helper object used by the "Google Play Store" (ARC) section
7 * to retrieve information about android apps. 7 * to retrieve information about android apps.
8 */ 8 */
9 9
10 /** 10 /**
11 * @typedef {{appReady: boolean}} 11 * @typedef {{appReady: boolean}}
12 * @see chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc 12 * @see chrome/browser/ui/webui/settings/chromeos/android_apps_handler.cc
13 */ 13 */
14 var AndroidAppsInfo; 14 var AndroidAppsInfo;
15 15
16 cr.define('settings', function() { 16 cr.define('settings', function() {
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 showAndroidAppsSettings: function(keyboardAction) { 49 showAndroidAppsSettings: function(keyboardAction) {
50 chrome.send('showAndroidAppsSettings', [keyboardAction]); 50 chrome.send('showAndroidAppsSettings', [keyboardAction]);
51 }, 51 },
52 }; 52 };
53 53
54 return { 54 return {
55 AndroidAppsBrowserProxy: AndroidAppsBrowserProxy, 55 AndroidAppsBrowserProxy: AndroidAppsBrowserProxy,
56 AndroidAppsBrowserProxyImpl: AndroidAppsBrowserProxyImpl, 56 AndroidAppsBrowserProxyImpl: AndroidAppsBrowserProxyImpl,
57 }; 57 };
58 }); 58 });
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698