commit | 23972357b3fb5591905c94528ee39ae1d1351f34 | [log] [tgz] |
---|---|---|
author | jdoerrie <[email protected]> | Thu Mar 02 12:09:19 2017 |
committer | Commit bot <[email protected]> | Thu Mar 02 12:09:19 2017 |
tree | ec19bd934fe0feb4ba594f87b2ff770b581ac875 | |
parent | d665cfdee84d40a5d3b7cd39bae64c886b24ad6d [diff] [blame] |
Remove base::FundamentalValue As a follow-up to typedeffing base::FundamentalValue to base::Value in http://crrev.com/2645073002 this change replaces all references to base::FundamentalValue by base::Value. [email protected], [email protected] BUG=646113 Review-Url: https://codereview.chromium.org/2666093002 Cr-Commit-Position: refs/heads/master@{#454235}
diff --git a/chrome/browser/extensions/menu_manager.h b/chrome/browser/extensions/menu_manager.h index 5b858d8..ec9f8a4 100644 --- a/chrome/browser/extensions/menu_manager.h +++ b/chrome/browser/extensions/menu_manager.h
@@ -145,7 +145,7 @@ std::unique_ptr<base::Value> ToValue() const { return std::unique_ptr<base::Value>( - new base::FundamentalValue(static_cast<int>(value_))); + new base::Value(static_cast<int>(value_))); } bool Populate(const base::Value& value) {