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

Side by Side Diff: chrome/browser/extensions/api/sync_file_system/extension_sync_event_observer.h

Issue 442383002: Move storage-related files from webkit/ to new top-level directory storage/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 4 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_OBSE RVER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_OBSE RVER_H_
6 #define CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_OBSE RVER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_OBSE RVER_H_
7 7
8 #include "base/basictypes.h" 8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 26 matching lines...) Expand all
37 37
38 // KeyedService override. 38 // KeyedService override.
39 virtual void Shutdown() OVERRIDE; 39 virtual void Shutdown() OVERRIDE;
40 40
41 // sync_file_system::SyncEventObserver interface implementation. 41 // sync_file_system::SyncEventObserver interface implementation.
42 virtual void OnSyncStateUpdated( 42 virtual void OnSyncStateUpdated(
43 const GURL& app_origin, 43 const GURL& app_origin,
44 sync_file_system::SyncServiceState state, 44 sync_file_system::SyncServiceState state,
45 const std::string& description) OVERRIDE; 45 const std::string& description) OVERRIDE;
46 46
47 virtual void OnFileSynced( 47 virtual void OnFileSynced(const storage::FileSystemURL& url,
48 const fileapi::FileSystemURL& url, 48 sync_file_system::SyncFileStatus status,
49 sync_file_system::SyncFileStatus status, 49 sync_file_system::SyncAction action,
50 sync_file_system::SyncAction action, 50 sync_file_system::SyncDirection direction) OVERRIDE;
51 sync_file_system::SyncDirection direction) OVERRIDE;
52 51
53 private: 52 private:
54 friend class BrowserContextKeyedAPIFactory<ExtensionSyncEventObserver>; 53 friend class BrowserContextKeyedAPIFactory<ExtensionSyncEventObserver>;
55 54
56 // Returns an empty string if the extension |app_origin| cannot be found 55 // Returns an empty string if the extension |app_origin| cannot be found
57 // in the installed extension list. 56 // in the installed extension list.
58 std::string GetExtensionId(const GURL& app_origin); 57 std::string GetExtensionId(const GURL& app_origin);
59 58
60 // BrowserContextKeyedAPI implementation. 59 // BrowserContextKeyedAPI implementation.
61 static const char* service_name() { return "ExtensionSyncEventObserver"; } 60 static const char* service_name() { return "ExtensionSyncEventObserver"; }
(...skipping 11 matching lines...) Expand all
73 DISALLOW_COPY_AND_ASSIGN(ExtensionSyncEventObserver); 72 DISALLOW_COPY_AND_ASSIGN(ExtensionSyncEventObserver);
74 }; 73 };
75 74
76 template <> 75 template <>
77 void BrowserContextKeyedAPIFactory< 76 void BrowserContextKeyedAPIFactory<
78 ExtensionSyncEventObserver>::DeclareFactoryDependencies(); 77 ExtensionSyncEventObserver>::DeclareFactoryDependencies();
79 78
80 } // namespace extensions 79 } // namespace extensions
81 80
82 #endif // CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_O BSERVER_H_ 81 #endif // CHROME_BROWSER_EXTENSIONS_API_SYNC_FILE_SYSTEM_EXTENSION_SYNC_EVENT_O BSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698