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

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

Issue 530553006: Remove "Move window to..." from gear menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 // fileBrowserPrivate API. 5 // fileBrowserPrivate API.
6 // This is a private API used by the file browser of ChromeOS. 6 // This is a private API used by the file browser of ChromeOS.
7 [platforms=("chromeos"), 7 [platforms=("chromeos"),
8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_pr ivate_api_functions.h"] 8 implemented_in="chrome/browser/chromeos/extensions/file_manager/file_browser_pr ivate_api_functions.h"]
9 namespace fileBrowserPrivate { 9 namespace fileBrowserPrivate {
10 // Type of the mounted volume. 10 // Type of the mounted volume.
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 804
805 static void onDirectoryChanged(FileWatchEvent event); 805 static void onDirectoryChanged(FileWatchEvent event);
806 806
807 static void onPreferencesChanged(); 807 static void onPreferencesChanged();
808 808
809 static void onDriveConnectionStatusChanged(); 809 static void onDriveConnectionStatusChanged();
810 810
811 static void onDeviceChanged(DeviceEvent event); 811 static void onDeviceChanged(DeviceEvent event);
812 812
813 static void onDriveSyncError(DriveSyncErrorEvent event); 813 static void onDriveSyncError(DriveSyncErrorEvent event);
814
815 // Dispatched when a profile is added.
816 static void onProfileAdded();
817
818 // Dispatched when any window moves another desktop.
819 // TODO(hirono): Add information which window is moved.
820 static void onDesktopChanged();
821 }; 814 };
822 }; 815 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698