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

Unified Diff: chrome/browser/chromeos/gdata/gdata_operation_registry.h

Issue 10285002: Revert 134774 because of win aura compile and chromium os browser_test crashes - Created uber tray … (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/system/tray/system_tray_delegate.cc ('k') | chrome/browser/chromeos/gdata/gdata_operation_registry.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/gdata/gdata_operation_registry.h
===================================================================
--- chrome/browser/chromeos/gdata/gdata_operation_registry.h (revision 134777)
+++ chrome/browser/chromeos/gdata/gdata_operation_registry.h (working copy)
@@ -69,13 +69,12 @@
// -1 if no expectation is available (yet).
int64 progress_total;
};
- typedef std::vector<ProgressStatus> ProgressStatusList;
// Observer interface for listening changes in the active set of operations.
class Observer {
public:
// Called when a GData operation started, made some progress, or finished.
- virtual void OnProgressUpdate(const ProgressStatusList& list) = 0;
+ virtual void OnProgressUpdate(const std::vector<ProgressStatus>& list) = 0;
protected:
virtual ~Observer() {}
};
@@ -129,7 +128,7 @@
bool CancelForFilePath(const FilePath& file_path);
// Obtains the list of currently active operations.
- ProgressStatusList GetProgressStatusList();
+ std::vector<ProgressStatus> GetProgressStatusList();
// Sets the observer.
void AddObserver(Observer* observer);
« no previous file with comments | « ash/system/tray/system_tray_delegate.cc ('k') | chrome/browser/chromeos/gdata/gdata_operation_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698