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

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

Issue 8804026: Move unrecoverable_error_handler file to util folder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For review. Created 9 years 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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_H_ 5 #ifndef CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 6 #define CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
7 #pragma once 7 #pragma once
8 8
9 #include <list> 9 #include <list>
10 #include <string> 10 #include <string>
(...skipping 12 matching lines...) Expand all
23 #include "chrome/browser/sync/engine/model_safe_worker.h" 23 #include "chrome/browser/sync/engine/model_safe_worker.h"
24 #include "chrome/browser/sync/failed_datatypes_handler.h" 24 #include "chrome/browser/sync/failed_datatypes_handler.h"
25 #include "chrome/browser/sync/glue/data_type_controller.h" 25 #include "chrome/browser/sync/glue/data_type_controller.h"
26 #include "chrome/browser/sync/glue/sync_backend_host.h" 26 #include "chrome/browser/sync/glue/sync_backend_host.h"
27 #include "chrome/browser/sync/internal_api/sync_manager.h" 27 #include "chrome/browser/sync/internal_api/sync_manager.h"
28 #include "chrome/browser/sync/profile_sync_service_observer.h" 28 #include "chrome/browser/sync/profile_sync_service_observer.h"
29 #include "chrome/browser/sync/syncable/model_type.h" 29 #include "chrome/browser/sync/syncable/model_type.h"
30 #include "chrome/browser/sync/sync_js_controller.h" 30 #include "chrome/browser/sync/sync_js_controller.h"
31 #include "chrome/browser/sync/sync_prefs.h" 31 #include "chrome/browser/sync/sync_prefs.h"
32 #include "chrome/browser/sync/sync_setup_wizard.h" 32 #include "chrome/browser/sync/sync_setup_wizard.h"
33 #include "chrome/browser/sync/unrecoverable_error_handler.h" 33 #include "chrome/browser/sync/util/unrecoverable_error_handler.h"
34 #include "chrome/common/net/gaia/google_service_auth_error.h" 34 #include "chrome/common/net/gaia/google_service_auth_error.h"
35 #include "content/public/browser/notification_observer.h" 35 #include "content/public/browser/notification_observer.h"
36 #include "content/public/browser/notification_registrar.h" 36 #include "content/public/browser/notification_registrar.h"
37 #include "content/public/browser/notification_types.h" 37 #include "content/public/browser/notification_types.h"
38 #include "googleurl/src/gurl.h" 38 #include "googleurl/src/gurl.h"
39 39
40 class Profile; 40 class Profile;
41 class ProfileSyncComponentsFactory; 41 class ProfileSyncComponentsFactory;
42 class SigninManager; 42 class SigninManager;
43 class SyncGlobalError; 43 class SyncGlobalError;
(...skipping 664 matching lines...) Expand 10 before | Expand all | Expand 10 after
708 FailedDatatypesHandler failed_datatypes_handler_; 708 FailedDatatypesHandler failed_datatypes_handler_;
709 709
710 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService); 710 DISALLOW_COPY_AND_ASSIGN(ProfileSyncService);
711 }; 711 };
712 712
713 bool ShouldShowActionOnUI( 713 bool ShouldShowActionOnUI(
714 const browser_sync::SyncProtocolError& error); 714 const browser_sync::SyncProtocolError& error);
715 715
716 716
717 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_ 717 #endif // CHROME_BROWSER_SYNC_PROFILE_SYNC_SERVICE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698