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

Unified Diff: chrome/browser/ui/webui/print_preview_handler.cc

Issue 7619006: base: Remove using declaration of FundamentalValue as it's no longer necessary. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 4 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 | « chrome/browser/ui/webui/plugins_ui.cc ('k') | chrome/browser/ui/webui/print_preview_ui.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/print_preview_handler.cc
diff --git a/chrome/browser/ui/webui/print_preview_handler.cc b/chrome/browser/ui/webui/print_preview_handler.cc
index f807a6c50af0f31a25f8bd538cd67bcb7f90f78b..e68e2ae30187e1f80c037264e3bc584fd53eb208 100644
--- a/chrome/browser/ui/webui/print_preview_handler.cc
+++ b/chrome/browser/ui/webui/print_preview_handler.cc
@@ -705,8 +705,8 @@ void PrintPreviewHandler::SendCloudPrintEnabled() {
#endif
GURL gcp_url(CloudPrintURL(BrowserList::GetLastActive()->profile()).
GetCloudPrintServiceURL());
- FundamentalValue enable(enable_cloud_print_integration);
- StringValue gcp_url_value(gcp_url.spec());
+ base::FundamentalValue enable(enable_cloud_print_integration);
+ base::StringValue gcp_url_value(gcp_url.spec());
web_ui_->CallJavascriptFunction("setUseCloudPrint", enable, gcp_url_value);
}
« no previous file with comments | « chrome/browser/ui/webui/plugins_ui.cc ('k') | chrome/browser/ui/webui/print_preview_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698