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

Unified Diff: chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc

Issue 1558633002: Cleanup: Remove double semicolons. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Convert CP code to a while loop, fix nit Created 5 years 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: chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc
diff --git a/chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc b/chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc
index 125a09953a816a91005abdf5e3741c22287d6214..3c493425d963f3759e38985cbce76ecf134a567a 100644
--- a/chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc
+++ b/chrome/browser/extensions/api/passwords_private/passwords_private_apitest.cc
@@ -57,7 +57,7 @@ class TestDelegate : public PasswordsPrivateDelegate {
TestDelegate() : observers_(new base::ObserverListThreadSafe<Observer>()) {
// Create mock data.
for (size_t i = 0; i < kNumMocks; i++) {
- current_entries_.push_back(CreateEntry(i));;
+ current_entries_.push_back(CreateEntry(i));
current_exceptions_.push_back(CreateException(i));
}
}

Powered by Google App Engine
This is Rietveld 408576698