| Index: content/browser/frame_host/render_frame_host_impl.h
|
| diff --git a/content/browser/frame_host/render_frame_host_impl.h b/content/browser/frame_host/render_frame_host_impl.h
|
| index 3acb62629e115ed247aa21dcb2386cea1ed83397..a0fb3327ff2b6b81ac3bb5b0144d17057648ffea 100644
|
| --- a/content/browser/frame_host/render_frame_host_impl.h
|
| +++ b/content/browser/frame_host/render_frame_host_impl.h
|
| @@ -17,6 +17,7 @@
|
| #include "content/public/browser/render_frame_host.h"
|
| #include "content/public/common/javascript_message_type.h"
|
| #include "content/public/common/page_transition_types.h"
|
| +#include "third_party/WebKit/public/web/WebTextDirection.h"
|
|
|
| class GURL;
|
| struct FrameHostMsg_DidFailProvisionalLoadWithError_Params;
|
| @@ -226,6 +227,10 @@ class CONTENT_EXPORT RenderFrameHostImpl : public RenderFrameHost {
|
| void OnCancelDesktopNotification(int notification_id);
|
| void OnDidAccessInitialDocument();
|
| void OnDidDisownOpener();
|
| + void OnUpdateTitle(int32 page_id,
|
| + const base::string16& title,
|
| + blink::WebTextDirection title_direction);
|
| + void OnUpdateEncoding(const std::string& encoding);
|
|
|
| // Returns whether the given URL is allowed to commit in the current process.
|
| // This is a more conservative check than RenderProcessHost::FilterURL, since
|
|
|