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

Unified Diff: chrome/browser/chrome_content_browser_client.cc

Issue 2539363004: Make base::Value::TYPE a scoped enum. (Closed)
Patch Set: Rebase Created 4 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/chrome_content_browser_client.cc
diff --git a/chrome/browser/chrome_content_browser_client.cc b/chrome/browser/chrome_content_browser_client.cc
index 2cab771dcbe9857263ba97ea71a87b5e9eea2297..84052261ad73ca3ce5c2003db178070981623e0f 100644
--- a/chrome/browser/chrome_content_browser_client.cc
+++ b/chrome/browser/chrome_content_browser_client.cc
@@ -2241,7 +2241,7 @@ void ChromeContentBrowserClient::SelectClientCertificate(
if (filter.get()) {
// Try to automatically select a client certificate.
- if (filter->IsType(base::Value::TYPE_DICTIONARY)) {
+ if (filter->IsType(base::Value::Type::DICTIONARY)) {
base::DictionaryValue* filter_dict =
static_cast<base::DictionaryValue*>(filter.get());
« no previous file with comments | « chrome/browser/bookmarks/bookmark_html_writer.cc ('k') | chrome/browser/chromeos/arc/policy/arc_policy_bridge.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698