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

Side by Side Diff: net/proxy/proxy_config_service_linux.h

Issue 623213004: replace OVERRIDE and FINAL with override and final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: undo unwanted change in comment 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
« no previous file with comments | « net/proxy/proxy_config_service_fixed.h ('k') | net/proxy/proxy_config_service_linux.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ 5 #ifndef NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_
6 #define NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ 6 #define NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 delegate_->SetUpAndFetchInitialConfig(glib_task_runner, 289 delegate_->SetUpAndFetchInitialConfig(glib_task_runner,
290 io_task_runner, 290 io_task_runner,
291 file_task_runner); 291 file_task_runner);
292 } 292 }
293 void OnCheckProxyConfigSettings() { 293 void OnCheckProxyConfigSettings() {
294 delegate_->OnCheckProxyConfigSettings(); 294 delegate_->OnCheckProxyConfigSettings();
295 } 295 }
296 296
297 // ProxyConfigService methods: 297 // ProxyConfigService methods:
298 // Called from IO thread. 298 // Called from IO thread.
299 virtual void AddObserver(Observer* observer) OVERRIDE; 299 virtual void AddObserver(Observer* observer) override;
300 virtual void RemoveObserver(Observer* observer) OVERRIDE; 300 virtual void RemoveObserver(Observer* observer) override;
301 virtual ProxyConfigService::ConfigAvailability GetLatestProxyConfig( 301 virtual ProxyConfigService::ConfigAvailability GetLatestProxyConfig(
302 ProxyConfig* config) OVERRIDE; 302 ProxyConfig* config) override;
303 303
304 private: 304 private:
305 scoped_refptr<Delegate> delegate_; 305 scoped_refptr<Delegate> delegate_;
306 306
307 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceLinux); 307 DISALLOW_COPY_AND_ASSIGN(ProxyConfigServiceLinux);
308 }; 308 };
309 309
310 } // namespace net 310 } // namespace net
311 311
312 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_ 312 #endif // NET_PROXY_PROXY_CONFIG_SERVICE_LINUX_H_
OLDNEW
« no previous file with comments | « net/proxy/proxy_config_service_fixed.h ('k') | net/proxy/proxy_config_service_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698