| Index: content/browser/tab_contents/tab_contents_delegate.cc
|
| ===================================================================
|
| --- content/browser/tab_contents/tab_contents_delegate.cc (revision 105162)
|
| +++ content/browser/tab_contents/tab_contents_delegate.cc (working copy)
|
| @@ -21,7 +21,7 @@
|
| const GURL& url,
|
| const GURL& referrer,
|
| WindowOpenDisposition disposition,
|
| - PageTransition::Type transition) {
|
| + content::PageTransition transition) {
|
| return OpenURLFromTab(source,
|
| OpenURLParams(url, referrer, disposition, transition));
|
| }
|
| @@ -159,7 +159,7 @@
|
| url,
|
| GURL(),
|
| NEW_FOREGROUND_TAB,
|
| - PageTransition::LINK);
|
| + content::PAGE_TRANSITION_LINK);
|
| }
|
|
|
| void TabContentsDelegate::ViewSourceForFrame(TabContents* source,
|
| @@ -172,7 +172,7 @@
|
| url,
|
| GURL(),
|
| NEW_FOREGROUND_TAB,
|
| - PageTransition::LINK);
|
| + content::PAGE_TRANSITION_LINK);
|
| }
|
|
|
| bool TabContentsDelegate::PreHandleKeyboardEvent(
|
|
|