Index: chrome/browser/ui/cocoa/applescript/tab_applescript.mm |
diff --git a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm |
index 02197014719bfd936bf305ad2ee74a878017f64a..7fc426f15abec0cd4a9b201a559209abf20b6b1e 100644 |
--- a/chrome/browser/ui/cocoa/applescript/tab_applescript.mm |
+++ b/chrome/browser/ui/cocoa/applescript/tab_applescript.mm |
@@ -304,13 +304,13 @@ void ResumeAppleEventAndSendReply(NSAppleEventManagerSuspensionID suspension_id, |
NavigationEntry* entry = |
webContents_->GetController().GetLastCommittedEntry(); |
if (entry) { |
- webContents_->OpenURL(OpenURLParams( |
- GURL(chrome::kViewSourceScheme + std::string(":") + |
- entry->GetURL().spec()), |
- Referrer(), |
- NEW_FOREGROUND_TAB, |
- content::PAGE_TRANSITION_LINK, |
- false)); |
+ webContents_->OpenURL( |
+ OpenURLParams(GURL(content::kViewSourceScheme + std::string(":") + |
+ entry->GetURL().spec()), |
+ Referrer(), |
+ NEW_FOREGROUND_TAB, |
+ content::PAGE_TRANSITION_LINK, |
+ false)); |
} |
} |