OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h" | 5 #include "chrome/browser/printing/cloud_print/cloud_print_setup_flow.h" |
6 | 6 |
7 #include "base/json/json_writer.h" | 7 #include "base/json/json_writer.h" |
8 #include "base/memory/singleton.h" | 8 #include "base/memory/singleton.h" |
9 #include "base/string_util.h" | 9 #include "base/string_util.h" |
10 #include "base/utf_string_conversions.h" | 10 #include "base/utf_string_conversions.h" |
(...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
127 // responsible for deleting the objects. | 127 // responsible for deleting the objects. |
128 handlers->push_back( | 128 handlers->push_back( |
129 new CloudPrintSetupMessageHandler( | 129 new CloudPrintSetupMessageHandler( |
130 const_cast<CloudPrintSetupFlow*>(this))); | 130 const_cast<CloudPrintSetupFlow*>(this))); |
131 } | 131 } |
132 | 132 |
133 void CloudPrintSetupFlow::GetDialogSize(gfx::Size* size) const { | 133 void CloudPrintSetupFlow::GetDialogSize(gfx::Size* size) const { |
134 PrefService* prefs = profile_->GetPrefs(); | 134 PrefService* prefs = profile_->GetPrefs(); |
135 gfx::Font approximate_web_font( | 135 gfx::Font approximate_web_font( |
136 prefs->GetString(prefs::kWebKitSansSerifFontFamily), | 136 prefs->GetString(prefs::kWebKitSansSerifFontFamily), |
137 prefs->GetInteger(prefs::kWebKitGlobalDefaultFontSize)); | 137 prefs->GetInteger(prefs::kWebKitDefaultFontSize)); |
138 | 138 |
139 if (setup_done_) { | 139 if (setup_done_) { |
140 *size = ui::GetLocalizedContentsSizeForFont( | 140 *size = ui::GetLocalizedContentsSizeForFont( |
141 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_WIDTH_CHARS, | 141 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_WIDTH_CHARS, |
142 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_HEIGHT_LINES, | 142 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_HEIGHT_LINES, |
143 approximate_web_font); | 143 approximate_web_font); |
144 } else { | 144 } else { |
145 *size = ui::GetLocalizedContentsSizeForFont( | 145 *size = ui::GetLocalizedContentsSizeForFont( |
146 IDS_CLOUD_PRINT_SETUP_WIZARD_WIDTH_CHARS, | 146 IDS_CLOUD_PRINT_SETUP_WIZARD_WIDTH_CHARS, |
147 IDS_CLOUD_PRINT_SETUP_WIZARD_HEIGHT_LINES, | 147 IDS_CLOUD_PRINT_SETUP_WIZARD_HEIGHT_LINES, |
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
309 product_name, | 309 product_name, |
310 UTF8ToUTF16(login_)); | 310 UTF8ToUTF16(login_)); |
311 string16 javascript(ASCIIToUTF16("cloudprint.setMessage('") + message + | 311 string16 javascript(ASCIIToUTF16("cloudprint.setMessage('") + message + |
312 ASCIIToUTF16("');")); | 312 ASCIIToUTF16("');")); |
313 ExecuteJavascriptInIFrame(DoneIframeXPath(), javascript); | 313 ExecuteJavascriptInIFrame(DoneIframeXPath(), javascript); |
314 | 314 |
315 if (web_ui_) { | 315 if (web_ui_) { |
316 PrefService* prefs = profile_->GetPrefs(); | 316 PrefService* prefs = profile_->GetPrefs(); |
317 gfx::Font approximate_web_font( | 317 gfx::Font approximate_web_font( |
318 prefs->GetString(prefs::kWebKitSansSerifFontFamily), | 318 prefs->GetString(prefs::kWebKitSansSerifFontFamily), |
319 prefs->GetInteger(prefs::kWebKitGlobalDefaultFontSize)); | 319 prefs->GetInteger(prefs::kWebKitDefaultFontSize)); |
320 gfx::Size done_size = ui::GetLocalizedContentsSizeForFont( | 320 gfx::Size done_size = ui::GetLocalizedContentsSizeForFont( |
321 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_WIDTH_CHARS, | 321 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_WIDTH_CHARS, |
322 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_HEIGHT_LINES, | 322 IDS_CLOUD_PRINT_SETUP_WIZARD_DONE_HEIGHT_LINES, |
323 approximate_web_font); | 323 approximate_web_font); |
324 | 324 |
325 base::FundamentalValue new_width(done_size.width()); | 325 base::FundamentalValue new_width(done_size.width()); |
326 base::FundamentalValue new_height(done_size.height()); | 326 base::FundamentalValue new_height(done_size.height()); |
327 web_ui_->CallJavascriptFunction("cloudprint.showSetupDone", | 327 web_ui_->CallJavascriptFunction("cloudprint.showSetupDone", |
328 new_width, new_height); | 328 new_width, new_height); |
329 } | 329 } |
330 | 330 |
331 ExecuteJavascriptInIFrame(DoneIframeXPath(), | 331 ExecuteJavascriptInIFrame(DoneIframeXPath(), |
332 ASCIIToUTF16("cloudprint.onPageShown();")); | 332 ASCIIToUTF16("cloudprint.onPageShown();")); |
333 } | 333 } |
334 | 334 |
335 void CloudPrintSetupFlow::ExecuteJavascriptInIFrame( | 335 void CloudPrintSetupFlow::ExecuteJavascriptInIFrame( |
336 const string16& iframe_xpath, | 336 const string16& iframe_xpath, |
337 const string16& js) { | 337 const string16& js) { |
338 if (web_ui_) { | 338 if (web_ui_) { |
339 content::RenderViewHost* rvh = | 339 content::RenderViewHost* rvh = |
340 web_ui_->GetWebContents()->GetRenderViewHost(); | 340 web_ui_->GetWebContents()->GetRenderViewHost(); |
341 rvh->ExecuteJavascriptInWebFrame(iframe_xpath, js); | 341 rvh->ExecuteJavascriptInWebFrame(iframe_xpath, js); |
342 } | 342 } |
343 } | 343 } |
OLD | NEW |