| Index: content/renderer/render_frame_impl.h
|
| diff --git a/content/renderer/render_frame_impl.h b/content/renderer/render_frame_impl.h
|
| index 32c68f4ec04d4b1e218b544f25ce99d11834e869..e796832da8c22f08c62be8646f3bb2bd84c7e6ab 100644
|
| --- a/content/renderer/render_frame_impl.h
|
| +++ b/content/renderer/render_frame_impl.h
|
| @@ -334,6 +334,10 @@ class CONTENT_EXPORT RenderFrameImpl
|
| const blink::WebHistoryItem& item,
|
| blink::WebHistoryCommitType commit_type);
|
| virtual void didUpdateCurrentHistoryItem(blink::WebLocalFrame* frame);
|
| + virtual void addNavigationTransitionData(
|
| + const blink::WebString& allowedDestinationOrigin,
|
| + const blink::WebString& selector,
|
| + const blink::WebString& markup);
|
| virtual void didChangeThemeColor();
|
| virtual void requestNotificationPermission(
|
| const blink::WebSecurityOrigin& origin,
|
| @@ -496,6 +500,8 @@ class CONTENT_EXPORT RenderFrameImpl
|
| void OnReload(bool ignore_cache);
|
| void OnTextSurroundingSelectionRequest(size_t max_length);
|
| void OnAddStyleSheetByURL(const std::string& url);
|
| + void OnSetupTransitionView(const std::string& markup);
|
| + void OnBeginExitTransition(const std::string& css_selector);
|
| void OnSetAccessibilityMode(AccessibilityMode new_mode);
|
| #if defined(OS_MACOSX)
|
| void OnCopyToFindPboard();
|
|
|