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

Side by Side Diff: chrome/browser/service_process/service_process_control.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) 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_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_ 5 #ifndef CHROME_BROWSER_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_
6 #define CHROME_BROWSER_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_ 6 #define CHROME_BROWSER_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_
7 7
8 #include <queue> 8 #include <queue>
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 // |success_task| can be invoked in the context of the Launch call. 91 // |success_task| can be invoked in the context of the Launch call.
92 // Virtual for testing. 92 // Virtual for testing.
93 virtual void Launch(const base::Closure& success_task, 93 virtual void Launch(const base::Closure& success_task,
94 const base::Closure& failure_task); 94 const base::Closure& failure_task);
95 95
96 // Disconnect the IPC channel from the service process. 96 // Disconnect the IPC channel from the service process.
97 // Virtual for testing. 97 // Virtual for testing.
98 virtual void Disconnect(); 98 virtual void Disconnect();
99 99
100 // IPC::Listener implementation. 100 // IPC::Listener implementation.
101 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 101 virtual bool OnMessageReceived(const IPC::Message& message) override;
102 virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; 102 virtual void OnChannelConnected(int32 peer_pid) override;
103 virtual void OnChannelError() OVERRIDE; 103 virtual void OnChannelError() override;
104 104
105 // IPC::Sender implementation 105 // IPC::Sender implementation
106 virtual bool Send(IPC::Message* message) OVERRIDE; 106 virtual bool Send(IPC::Message* message) override;
107 107
108 // content::NotificationObserver implementation. 108 // content::NotificationObserver implementation.
109 virtual void Observe(int type, 109 virtual void Observe(int type,
110 const content::NotificationSource& source, 110 const content::NotificationSource& source,
111 const content::NotificationDetails& details) OVERRIDE; 111 const content::NotificationDetails& details) override;
112 112
113 // Send a shutdown message to the service process. IPC channel will be 113 // Send a shutdown message to the service process. IPC channel will be
114 // destroyed after calling this method. 114 // destroyed after calling this method.
115 // Return true if the message was sent. 115 // Return true if the message was sent.
116 // Virtual for testing. 116 // Virtual for testing.
117 virtual bool Shutdown(); 117 virtual bool Shutdown();
118 118
119 // Send request for cloud print proxy info (enabled state, email, proxy id). 119 // Send request for cloud print proxy info (enabled state, email, proxy id).
120 // The callback gets the information when received. 120 // The callback gets the information when received.
121 // Returns true if request was sent. Callback will be called only in case of 121 // Returns true if request was sent. Callback will be called only in case of
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
229 // the service process. 229 // the service process.
230 base::Closure histograms_callback_; 230 base::Closure histograms_callback_;
231 231
232 content::NotificationRegistrar registrar_; 232 content::NotificationRegistrar registrar_;
233 233
234 // Callback that gets invoked if service didn't reply in time. 234 // Callback that gets invoked if service didn't reply in time.
235 base::CancelableClosure histograms_timeout_callback_; 235 base::CancelableClosure histograms_timeout_callback_;
236 }; 236 };
237 237
238 #endif // CHROME_BROWSER_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_ 238 #endif // CHROME_BROWSER_SERVICE_PROCESS_SERVICE_PROCESS_CONTROL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698