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

Side by Side Diff: ui/file_manager/externs/background/drive_sync_handler.js

Issue 2883263002: Stop foreground depending on background in gyp v2 (Closed)
Patch Set: Format. Created 3 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 /**
6 * Handler of the background page for the drive sync events.
7 * @constructor
8 * @extends {cr.EventTarget}
9 * @struct
10 */
11 function DriveSyncHandler() {}
12
13 DriveSyncHandler.prototype = /** @struct */ {
14 /**
15 * @return {boolean} Whether the handler is having syncing items or not.
16 */
17 get syncing() {}
18 };
19
20 /**
21 * Returns whether the drive sync is currently suppressed or not.
22 * @return {boolean}
23 */
24 DriveSyncHandler.prototype.isSyncSuppressed = function() {};
25
26 /**
27 * Shows the notification saying that the drive sync is disabled on cellular
28 * network.
29 */
30 DriveSyncHandler.prototype.showDisabledMobileSyncNotification = function() {};
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698