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

Side by Side Diff: chrome/browser/sync/profile_sync_service_mock.h

Issue 9699057: [Sync] Move 'sync' target to sync/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Tim's comments Created 8 years, 9 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_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_
7 #pragma once 7 #pragma once
8 8
9 #include <string> 9 #include <string>
10 10
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 #include "base/string16.h" 12 #include "base/string16.h"
13 #include "chrome/browser/sync/glue/change_processor.h" 13 #include "chrome/browser/sync/glue/change_processor.h"
14 #include "chrome/browser/sync/glue/data_type_controller.h" 14 #include "chrome/browser/sync/glue/data_type_controller.h"
15 #include "chrome/browser/sync/profile_sync_service.h" 15 #include "chrome/browser/sync/profile_sync_service.h"
16 #include "chrome/browser/sync/protocol/sync_protocol_error.h"
17 #include "chrome/browser/sync/syncable/model_type.h"
18 #include "chrome/common/net/gaia/google_service_auth_error.h" 16 #include "chrome/common/net/gaia/google_service_auth_error.h"
19 #include "chrome/test/base/testing_profile.h" 17 #include "chrome/test/base/testing_profile.h"
18 #include "sync/protocol/sync_protocol_error.h"
19 #include "sync/syncable/model_type.h"
20 #include "testing/gmock/include/gmock/gmock.h" 20 #include "testing/gmock/include/gmock/gmock.h"
21 21
22 class ProfileSyncServiceMock : public ProfileSyncService { 22 class ProfileSyncServiceMock : public ProfileSyncService {
23 public: 23 public:
24 // no-arg constructor provided so TestingProfile can use NiceMock. 24 // no-arg constructor provided so TestingProfile can use NiceMock.
25 ProfileSyncServiceMock(); 25 ProfileSyncServiceMock();
26 explicit ProfileSyncServiceMock(Profile* profile); 26 explicit ProfileSyncServiceMock(Profile* profile);
27 virtual ~ProfileSyncServiceMock(); 27 virtual ~ProfileSyncServiceMock();
28 28
29 // A utility used by sync tests to create a TestingProfile with a Google 29 // A utility used by sync tests to create a TestingProfile with a Google
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 83
84 MOCK_METHOD0(AreCredentialsAvailable, bool()); 84 MOCK_METHOD0(AreCredentialsAvailable, bool());
85 85
86 MOCK_CONST_METHOD0(IsPassphraseRequired, bool()); 86 MOCK_CONST_METHOD0(IsPassphraseRequired, bool());
87 MOCK_CONST_METHOD0(IsPassphraseRequiredForDecryption, bool()); 87 MOCK_CONST_METHOD0(IsPassphraseRequiredForDecryption, bool());
88 88
89 MOCK_METHOD0(ShowErrorUI, void()); 89 MOCK_METHOD0(ShowErrorUI, void());
90 }; 90 };
91 91
92 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_ 92 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_MOCK_H_
OLDNEW
« no previous file with comments | « chrome/browser/sync/profile_sync_service_harness.cc ('k') | chrome/browser/sync/profile_sync_service_password_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698