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

Unified Diff: extensions/browser/api/system_display/system_display_api.cc

Issue 2666093002: Remove base::FundamentalValue (Closed)
Patch Set: Rebase 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
« no previous file with comments | « extensions/browser/api/storage/storage_api.cc ('k') | extensions/browser/api/usb/usb_api.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/api/system_display/system_display_api.cc
diff --git a/extensions/browser/api/system_display/system_display_api.cc b/extensions/browser/api/system_display/system_display_api.cc
index 820e2fbb8d703f0786509c3fd3d95dba9ebac78e..c6149a334a282d9a50b8653d3e5ba02edae09d7b 100644
--- a/extensions/browser/api/system_display/system_display_api.cc
+++ b/extensions/browser/api/system_display/system_display_api.cc
@@ -292,7 +292,7 @@ SystemDisplayShowNativeTouchCalibrationFunction::Run() {
void SystemDisplayShowNativeTouchCalibrationFunction::OnCalibrationComplete(
bool success) {
if (success)
- Respond(OneArgument(base::MakeUnique<base::FundamentalValue>(true)));
+ Respond(OneArgument(base::MakeUnique<base::Value>(true)));
else
Respond(Error(kTouchCalibrationError));
}
« no previous file with comments | « extensions/browser/api/storage/storage_api.cc ('k') | extensions/browser/api/usb/usb_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698