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

Side by Side Diff: chrome/browser/signin/principals_message_filter.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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 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_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_ 5 #ifndef CHROME_BROWSER_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_
6 #define CHROME_BROWSER_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_ 6 #define CHROME_BROWSER_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_
7 7
8 #include "content/public/browser/browser_message_filter.h" 8 #include "content/public/browser/browser_message_filter.h"
9 9
10 class GURL; 10 class GURL;
11 class Profile; 11 class Profile;
12 12
13 // A message filter implementation that receives messages for browser account 13 // A message filter implementation that receives messages for browser account
14 // management from the renderer. 14 // management from the renderer.
15 class PrincipalsMessageFilter : public content::BrowserMessageFilter { 15 class PrincipalsMessageFilter : public content::BrowserMessageFilter {
16 public: 16 public:
17 explicit PrincipalsMessageFilter(int render_process_id); 17 explicit PrincipalsMessageFilter(int render_process_id);
18 18
19 // content::BrowserMessageFilter implementation. 19 // content::BrowserMessageFilter implementation.
20 virtual void OverrideThreadForMessage( 20 virtual void OverrideThreadForMessage(
21 const IPC::Message& message, 21 const IPC::Message& message,
22 content::BrowserThread::ID* thread) OVERRIDE; 22 content::BrowserThread::ID* thread) override;
23 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 23 virtual bool OnMessageReceived(const IPC::Message& message) override;
24 24
25 private: 25 private:
26 virtual ~PrincipalsMessageFilter(); 26 virtual ~PrincipalsMessageFilter();
27 27
28 void OnMsgShowBrowserAccountManagementUI(); 28 void OnMsgShowBrowserAccountManagementUI();
29 void OnMsgGetManagedAccounts(const GURL& url, 29 void OnMsgGetManagedAccounts(const GURL& url,
30 std::vector<std::string>* managed_accounts); 30 std::vector<std::string>* managed_accounts);
31 31
32 int render_process_id_; 32 int render_process_id_;
33 33
34 DISALLOW_COPY_AND_ASSIGN(PrincipalsMessageFilter); 34 DISALLOW_COPY_AND_ASSIGN(PrincipalsMessageFilter);
35 }; 35 };
36 36
37 #endif // CHROME_BROWSER_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_ 37 #endif // CHROME_BROWSER_SIGNIN_PRINCIPALS_MESSAGE_FILTER_H_
OLDNEW
« no previous file with comments | « chrome/browser/signin/fake_signin_manager.h ('k') | chrome/browser/signin/profile_identity_provider.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698