| Index: chrome/browser/ui/browser.cc
|
| diff --git a/chrome/browser/ui/browser.cc b/chrome/browser/ui/browser.cc
|
| index 90ef7d4ab7f10f27c435fce7cdab54af276e6f75..03377972755850fb218db37422d38f3fb3fa915d 100644
|
| --- a/chrome/browser/ui/browser.cc
|
| +++ b/chrome/browser/ui/browser.cc
|
| @@ -1407,9 +1407,9 @@ void Browser::ViewSourceForTab(WebContents* source, const GURL& page_url) {
|
|
|
| void Browser::ViewSourceForFrame(WebContents* source,
|
| const GURL& frame_url,
|
| - const std::string& frame_content_state) {
|
| + const content::PageState& frame_page_state) {
|
| DCHECK(source);
|
| - chrome::ViewSource(this, source, frame_url, frame_content_state);
|
| + chrome::ViewSource(this, source, frame_url, frame_page_state);
|
| }
|
|
|
| void Browser::ShowRepostFormWarningDialog(WebContents* source) {
|
|
|