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

Unified Diff: components/safe_browsing_db/util.cc

Issue 2451163002: Add missing break; to switch statement in safe_browsing::GetListName. (Closed)
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/safe_browsing_db/util.cc
diff --git a/components/safe_browsing_db/util.cc b/components/safe_browsing_db/util.cc
index 3f34fe5fb095c88834fa3d7e0cefb8ad14ad0d5a..0f38dee61bde5dabba15fa793e4b05d8b5f6032d 100644
--- a/components/safe_browsing_db/util.cc
+++ b/components/safe_browsing_db/util.cc
@@ -134,6 +134,7 @@ bool GetListName(ListType list_id, std::string* list) {
break;
case MODULEWHITELIST:
*list = kModuleWhitelist;
+ break;
case RESOURCEBLACKLIST:
*list = kResourceBlacklist;
break;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698