Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(429)

Unified Diff: content/browser/frame_host/render_frame_host_impl.cc

Issue 1002473003: Expose text track settings in Content and implement for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved IPC to RenderFrame(Host) Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/browser/frame_host/render_frame_host_impl.cc
diff --git a/content/browser/frame_host/render_frame_host_impl.cc b/content/browser/frame_host/render_frame_host_impl.cc
index df33497e5e11e9e6cb91dcdfd056c5d9a91e9416..05a3f1bf71d8fce2f7ea118e1f6e5109bba32fb9 100644
--- a/content/browser/frame_host/render_frame_host_impl.cc
+++ b/content/browser/frame_host/render_frame_host_impl.cc
@@ -1827,6 +1827,11 @@ void RenderFrameHostImpl::SetAccessibilityCallbackForTesting(
accessibility_testing_callback_ = callback;
}
+void RenderFrameHostImpl::SetTextTrackSettings(
+ const FrameMsg_TextTrackSettings_Params& params) {
nasko 2015/03/12 20:53:53 Let's add a DCHECK to verify the assumptions that
+ Send(new FrameMsg_SetTextTrackSettings(routing_id_, params));
+}
+
const ui::AXTree* RenderFrameHostImpl::GetAXTreeForTesting() {
return ax_tree_for_testing_.get();
}

Powered by Google App Engine
This is Rietveld 408576698