Index: content/browser/web_contents/web_contents_impl.cc |
diff --git a/content/browser/web_contents/web_contents_impl.cc b/content/browser/web_contents/web_contents_impl.cc |
index a9ddf1e4d80ba4819fd062054c7dc4490dbc2a48..14cf8a42cbf21eccfb415e69ffb85cac85fb0cd7 100644 |
--- a/content/browser/web_contents/web_contents_impl.cc |
+++ b/content/browser/web_contents/web_contents_impl.cc |
@@ -1585,7 +1585,7 @@ void WebContentsImpl::CreateNewWindow( |
OpenURLParams open_params(params.target_url, |
Referrer(), |
CURRENT_TAB, |
- PAGE_TRANSITION_LINK, |
+ ui::PAGE_TRANSITION_LINK, |
true /* is_renderer_initiated */); |
open_params.user_gesture = params.user_gesture; |
new_contents->OpenURL(open_params); |
@@ -2574,7 +2574,7 @@ void WebContentsImpl::DidRedirectProvisionalLoad( |
void WebContentsImpl::DidCommitProvisionalLoad( |
RenderFrameHostImpl* render_frame_host, |
const GURL& url, |
- PageTransition transition_type) { |
+ ui::PageTransition transition_type) { |
// Notify observers about the commit of the provisional load. |
FOR_EACH_OBSERVER(WebContentsObserver, |
observers_, |