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

Side by Side Diff: chrome/browser/services/gcm/gcm_profile_service.h

Issue 629603002: replace OVERRIDE and FINAL with override and final in chrome/browser/[r-z]* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase on master Created 6 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 5 #ifndef CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
6 #define CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 6 #define CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/compiler_specific.h" 10 #include "base/compiler_specific.h"
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 virtual ~GCMProfileService(); 45 virtual ~GCMProfileService();
46 46
47 // TODO(jianli): obsolete methods that are going to be removed soon. 47 // TODO(jianli): obsolete methods that are going to be removed soon.
48 void AddAppHandler(const std::string& app_id, GCMAppHandler* handler); 48 void AddAppHandler(const std::string& app_id, GCMAppHandler* handler);
49 void RemoveAppHandler(const std::string& app_id); 49 void RemoveAppHandler(const std::string& app_id);
50 void Register(const std::string& app_id, 50 void Register(const std::string& app_id,
51 const std::vector<std::string>& sender_ids, 51 const std::vector<std::string>& sender_ids,
52 const GCMDriver::RegisterCallback& callback); 52 const GCMDriver::RegisterCallback& callback);
53 53
54 // KeyedService: 54 // KeyedService:
55 virtual void Shutdown() OVERRIDE; 55 virtual void Shutdown() override;
56 56
57 // Returns the user name if the profile is signed in or an empty string 57 // Returns the user name if the profile is signed in or an empty string
58 // otherwise. 58 // otherwise.
59 // TODO(jianli): To be removed when sign-in enforcement is dropped. 59 // TODO(jianli): To be removed when sign-in enforcement is dropped.
60 std::string SignedInUserName() const; 60 std::string SignedInUserName() const;
61 61
62 // For testing purpose. 62 // For testing purpose.
63 void SetDriverForTesting(GCMDriver* driver); 63 void SetDriverForTesting(GCMDriver* driver);
64 64
65 GCMDriver* driver() const { return driver_.get(); } 65 GCMDriver* driver() const { return driver_.get(); }
(...skipping 23 matching lines...) Expand all
89 #if defined(OS_CHROMEOS) 89 #if defined(OS_CHROMEOS)
90 scoped_ptr<GCMConnectionObserver> chromeos_connection_observer_; 90 scoped_ptr<GCMConnectionObserver> chromeos_connection_observer_;
91 #endif 91 #endif
92 92
93 DISALLOW_COPY_AND_ASSIGN(GCMProfileService); 93 DISALLOW_COPY_AND_ASSIGN(GCMProfileService);
94 }; 94 };
95 95
96 } // namespace gcm 96 } // namespace gcm
97 97
98 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_ 98 #endif // CHROME_BROWSER_SERVICES_GCM_GCM_PROFILE_SERVICE_H_
OLDNEW
« no previous file with comments | « chrome/browser/services/gcm/gcm_account_tracker.h ('k') | chrome/browser/services/gcm/gcm_profile_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698