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

Unified Diff: ash/system/chromeos/network/vpn_delegate.cc

Issue 2095193002: clang-format all of //ash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ash/system/chromeos/network/tray_vpn.cc ('k') | ash/system/chromeos/power/power_event_observer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/system/chromeos/network/vpn_delegate.cc
diff --git a/ash/system/chromeos/network/vpn_delegate.cc b/ash/system/chromeos/network/vpn_delegate.cc
index 62264a6511f4188aa86c12c7bfb938a05a6d826d..1628d494bc21336eaab630fb62cfde9247c75df3 100644
--- a/ash/system/chromeos/network/vpn_delegate.cc
+++ b/ash/system/chromeos/network/vpn_delegate.cc
@@ -9,12 +9,10 @@
namespace ash {
-VPNProvider::Key::Key() : third_party(false) {
-}
+VPNProvider::Key::Key() : third_party(false) {}
VPNProvider::Key::Key(const std::string& extension_id)
- : third_party(true), extension_id(extension_id) {
-}
+ : third_party(true), extension_id(extension_id) {}
bool VPNProvider::Key::operator==(const Key& other) const {
return other.third_party == third_party && other.extension_id == extension_id;
@@ -33,17 +31,13 @@ bool VPNProvider::Key::MatchesNetwork(
}
VPNProvider::VPNProvider(const Key& key, const std::string& name)
- : key(key), name(name) {
-}
+ : key(key), name(name) {}
-VPNDelegate::Observer::~Observer() {
-}
+VPNDelegate::Observer::~Observer() {}
-VPNDelegate::VPNDelegate() {
-}
+VPNDelegate::VPNDelegate() {}
-VPNDelegate::~VPNDelegate() {
-}
+VPNDelegate::~VPNDelegate() {}
void VPNDelegate::AddObserver(Observer* observer) {
observer_list_.AddObserver(observer);
« no previous file with comments | « ash/system/chromeos/network/tray_vpn.cc ('k') | ash/system/chromeos/power/power_event_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698