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

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

Issue 11419224: Add missing (and remove superfluous) 'explicit' from constructors. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase + remove non-straightforward changes Created 7 years, 11 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_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_ 5 #ifndef CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_
6 #define CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_ 6 #define CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/location.h" 10 #include "base/location.h"
11 #include "base/memory/weak_ptr.h" 11 #include "base/memory/weak_ptr.h"
12 12
13 #include "sync/internal_api/public/util/unrecoverable_error_handler.h" 13 #include "sync/internal_api/public/util/unrecoverable_error_handler.h"
14 #include "sync/internal_api/public/util/weak_handle.h" 14 #include "sync/internal_api/public/util/weak_handle.h"
15 15
16 class ProfileSyncService; 16 class ProfileSyncService;
17 namespace browser_sync { 17 namespace browser_sync {
18 18
19 class BackendUnrecoverableErrorHandler 19 class BackendUnrecoverableErrorHandler
20 : public syncer::UnrecoverableErrorHandler { 20 : public syncer::UnrecoverableErrorHandler {
21 public: 21 public:
22 BackendUnrecoverableErrorHandler( 22 explicit BackendUnrecoverableErrorHandler(
23 const syncer::WeakHandle<ProfileSyncService>& service); 23 const syncer::WeakHandle<ProfileSyncService>& service);
24 virtual ~BackendUnrecoverableErrorHandler(); 24 virtual ~BackendUnrecoverableErrorHandler();
25 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here, 25 virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
26 const std::string& message) OVERRIDE; 26 const std::string& message) OVERRIDE;
27 27
28 private: 28 private:
29 syncer::WeakHandle<ProfileSyncService> service_; 29 syncer::WeakHandle<ProfileSyncService> service_;
30 }; 30 };
31 } // namespace browser_sync 31 } // namespace browser_sync
32 #endif // CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_ 32 #endif // CHROME_BROWSER_SYNC_BACKEND_UNRECOVERABLE_ERROR_HANDLER_H_
33
OLDNEW
« no previous file with comments | « chrome/browser/spellchecker/spellcheck_message_filter_mac.h ('k') | chrome/browser/sync/glue/shared_change_processor_ref.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698