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

Unified Diff: components/cryptauth/fake_secure_channel.cc

Issue 2713993003: Revert of build: Enable auto raw pointer deduction check on linux. (Closed)
Patch Set: Created 3 years, 10 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
Index: components/cryptauth/fake_secure_channel.cc
diff --git a/components/cryptauth/fake_secure_channel.cc b/components/cryptauth/fake_secure_channel.cc
index e06a0d4dd44c4caeabd8fe4d1cc186445b274659..11bfe1797f4a25512af3e1b2364bac0986857a64 100644
--- a/components/cryptauth/fake_secure_channel.cc
+++ b/components/cryptauth/fake_secure_channel.cc
@@ -24,7 +24,7 @@
// Copy to prevent channel from being removed during handler.
std::vector<Observer*> observers_copy = observers_;
- for (auto* observer : observers_copy) {
+ for (auto observer : observers_copy) {
observer->OnSecureChannelStatusChanged(this, old_status, status_);
}
}
@@ -33,7 +33,7 @@
const std::string& payload) {
// Copy to prevent channel from being removed during handler.
std::vector<Observer*> observers_copy = observers_;
- for (auto* observer : observers_copy) {
+ for (auto observer : observers_copy) {
observer->OnMessageReceived(this, feature, payload);
}
}

Powered by Google App Engine
This is Rietveld 408576698