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

Unified Diff: components/html_viewer/html_document.cc

Issue 1347023003: Rename frame classes (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge 2 trunk Created 5 years, 3 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
« no previous file with comments | « components/html_viewer/html_document.h ('k') | components/html_viewer/html_frame.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/html_document.cc
diff --git a/components/html_viewer/html_document.cc b/components/html_viewer/html_document.cc
index 79bf312ed65357ab98225e10f8e3ddc1947b36ed..88f1ae012260b165028db5729d5d9c071a07aacd 100644
--- a/components/html_viewer/html_document.cc
+++ b/components/html_viewer/html_document.cc
@@ -104,7 +104,7 @@ HTMLDocument::HTMLDocument(mojo::ApplicationImpl* html_document_app,
frame_(nullptr),
delete_callback_(delete_callback),
factory_(factory) {
- connection->AddService<web_view::FrameTreeClient>(this);
+ connection->AddService<web_view::mojom::FrameClient>(this);
connection->AddService<AxProvider>(this);
connection->AddService<mojo::ViewTreeClient>(this);
connection->AddService<devtools_service::DevToolsAgent>(this);
@@ -290,9 +290,9 @@ void HTMLDocument::Create(mojo::ApplicationConnection* connection,
void HTMLDocument::Create(
mojo::ApplicationConnection* connection,
- mojo::InterfaceRequest<web_view::FrameTreeClient> request) {
+ mojo::InterfaceRequest<web_view::mojom::FrameClient> request) {
if (frame_) {
- DVLOG(1) << "Request for FrameTreeClient after one already vended.";
+ DVLOG(1) << "Request for FrameClient after one already vended.";
return;
}
resource_waiter_->Bind(request.Pass());
« no previous file with comments | « components/html_viewer/html_document.h ('k') | components/html_viewer/html_frame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698