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

Side by Side Diff: webkit/fileapi/syncable/mock_sync_status_observer.h

Issue 15806012: Move webkit/fileapi/syncable/* code to webkit/browser/fileapi (final!) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef WEBKIT_FILEAPI_SYNCABLE_MOCK_SYNC_STATUS_OBSERVER_H_
6 #define WEBKIT_FILEAPI_SYNCABLE_MOCK_SYNC_STATUS_OBSERVER_H_
7
8 #include "testing/gmock/include/gmock/gmock.h"
9 #include "webkit/fileapi/syncable/local_file_sync_status.h"
10
11 namespace sync_file_system {
12
13 class MockSyncStatusObserver : public LocalFileSyncStatus::Observer {
14 public:
15 MockSyncStatusObserver();
16 virtual ~MockSyncStatusObserver();
17
18 // LocalFileSyncStatus::Observer overrides.
19 MOCK_METHOD1(OnSyncEnabled, void(const fileapi::FileSystemURL& url));
20 MOCK_METHOD1(OnWriteEnabled, void(const fileapi::FileSystemURL& url));
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(MockSyncStatusObserver);
24 };
25
26 } // namespace sync_file_system
27
28 #endif // WEBKIT_FILEAPI_SYNCABLE_MOCK_SYNC_STATUS_OBSERVER_H_
OLDNEW
« no previous file with comments | « webkit/fileapi/syncable/local_origin_change_observer.h ('k') | webkit/fileapi/syncable/mock_sync_status_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698