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

Unified Diff: chrome/browser/sync_file_system/sync_event_observer.h

Issue 11316133: Added implementation of SyncEventObserver to route events to Javascript Extension. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed test to match updated SyncEventObserver interface Created 8 years, 1 month 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
Index: chrome/browser/sync_file_system/sync_event_observer.h
diff --git a/chrome/browser/sync_file_system/sync_event_observer.h b/chrome/browser/sync_file_system/sync_event_observer.h
index a6731a22c8229b23fa6c74c347b9a0fb53323f83..a356690174691f2cdec642f1d1a777bf8ee3fd30 100644
--- a/chrome/browser/sync_file_system/sync_event_observer.h
+++ b/chrome/browser/sync_file_system/sync_event_observer.h
@@ -7,6 +7,7 @@
#include <string>
+#include "googleurl/src/gurl.h"
kinuko 2012/11/28 07:41:13 I think forward decl would work class GURL;
calvinlo 2012/11/28 10:43:46 Done.
#include "webkit/fileapi/syncable/sync_operation_type.h"
namespace fileapi {
@@ -49,8 +50,7 @@ class SyncEventObserver {
// Reports the file |url| was updated for |operation|
// by the sync file system backend.
- virtual void OnFileSynced(fileapi::SyncStatusCode status,
- fileapi::SyncOperationType operation,
+ virtual void OnFileSynced(fileapi::SyncOperationType operation,
const fileapi::FileSystemURL& url) = 0;
private:

Powered by Google App Engine
This is Rietveld 408576698