Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / browser / sync / backend_unrecoverable_error_handler.h
blob872cef4f9ab0f2058ac3e8b78c9a322a2c9295d9
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.
5 #ifndef CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_
6 #define CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_
8 #include <string>
10 #include "base/location.h"
11 #include "base/memory/weak_ptr.h"
13 #include "sync/internal_api/public/util/unrecoverable_error_handler.h"
14 #include "sync/internal_api/public/util/weak_handle.h"
16 class ProfileSyncService;
17 namespace browser_sync {
19 class BackendUnrecoverableErrorHandler
20 : public syncer::UnrecoverableErrorHandler {
21 public:
22 BackendUnrecoverableErrorHandler(
23 const syncer::WeakHandle<ProfileSyncService>& service);
24 virtual ~BackendUnrecoverableErrorHandler();
25 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
26 const std::string& message) OVERRIDE;
28 private:
29 syncer::WeakHandle<ProfileSyncService> service_;
31 } // namespace browser_sync
32 #endif // CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_