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

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

Issue 279004: Made sync code build and pass unit tests on OS X. (Closed)
Patch Set: Fixed uninitialized var error. Created 11 years, 2 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
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 #ifdef CHROME_PERSONALIZATION 5 #ifdef CHROME_PERSONALIZATION
6 6
7 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 7 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
8 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 8 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
9 9
10 #include <string> 10 #include <string>
11 #include <map> 11 #include <map>
12 #include <vector> 12 #include <vector>
13 13
14 #include "base/basictypes.h" 14 #include "base/basictypes.h"
15 #include "base/file_path.h" 15 #include "base/file_path.h"
16 #include "base/observer_list.h" 16 #include "base/observer_list.h"
17 #include "base/scoped_ptr.h" 17 #include "base/scoped_ptr.h"
18 #include "chrome/browser/bookmarks/bookmark_model.h" 18 #include "chrome/browser/bookmarks/bookmark_model.h"
19 #include "chrome/browser/profile.h" 19 #include "chrome/browser/profile.h"
20 #include "chrome/browser/sync/glue/change_processor.h" 20 #include "chrome/browser/sync/glue/change_processor.h"
21 #include "chrome/browser/sync/glue/model_associator.h" 21 #include "chrome/browser/sync/glue/model_associator.h"
22 #include "chrome/browser/sync/glue/sync_backend_host.h" 22 #include "chrome/browser/sync/glue/sync_backend_host.h"
23 #include "chrome/browser/views/sync/sync_setup_wizard.h" 23 #include "chrome/browser/sync/sync_setup_wizard.h"
24 #include "chrome/common/notification_registrar.h" 24 #include "chrome/common/notification_registrar.h"
25 #include "googleurl/src/gurl.h" 25 #include "googleurl/src/gurl.h"
26 26
27 class CommandLine; 27 class CommandLine;
28 class MessageLoop; 28 class MessageLoop;
29 class Profile; 29 class Profile;
30 30
31 namespace browser_sync { 31 namespace browser_sync {
32 class ModelAssociator; 32 class ModelAssociator;
33 33
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after
308 bool unrecoverable_error_detected_; 308 bool unrecoverable_error_detected_;
309 309
310 ObserverList<Observer> observers_; 310 ObserverList<Observer> observers_;
311 311
312 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 312 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
313 }; 313 };
314 314
315 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 315 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
316 316
317 #endif // CHROME_PERSONALIZATION 317 #endif // CHROME_PERSONALIZATION
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698