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

Unified Diff: components/html_viewer/html_document.h

Issue 1675083002: Rename ApplicationDelegate to ShellClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delegate
Patch Set: . Created 4 years, 10 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/blink_platform_impl.cc ('k') | components/html_viewer/html_document.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/html_viewer/html_document.h
diff --git a/components/html_viewer/html_document.h b/components/html_viewer/html_document.h
index 453d2dfacb66fd01ef4ab9a8c72e0c4c9fc18bac..b24f2b39503a9709330f2d8c8ad0eb8ee33f448d 100644
--- a/components/html_viewer/html_document.h
+++ b/components/html_viewer/html_document.h
@@ -64,7 +64,7 @@ class HTMLDocument
// |connection| the specific connection triggering this new instance.
// |setup| is used to obtain init type state (such as resources).
HTMLDocument(mojo::Shell* html_document_shell,
- mojo::ApplicationConnection* connection,
+ mojo::Connection* connection,
mojo::URLResponsePtr response,
GlobalState* setup,
const DeleteCallback& delete_callback,
@@ -119,31 +119,31 @@ class HTMLDocument
void OnFrameDestroyed() override;
// mojo::InterfaceFactory<mojo::AxProvider>:
- void Create(mojo::ApplicationConnection* connection,
+ void Create(mojo::Connection* connection,
mojo::InterfaceRequest<mojo::AxProvider> request) override;
// mojo::InterfaceFactory<web_view::mojom::FrameClient>:
void Create(
- mojo::ApplicationConnection* connection,
+ mojo::Connection* connection,
mojo::InterfaceRequest<web_view::mojom::FrameClient> request) override;
// mojo::InterfaceFactory<TestHTMLViewer>:
- void Create(mojo::ApplicationConnection* connection,
+ void Create(mojo::Connection* connection,
mojo::InterfaceRequest<TestHTMLViewer> request) override;
// mojo::InterfaceFactory<devtools_service::DevToolsAgent>:
void Create(
- mojo::ApplicationConnection* connection,
+ mojo::Connection* connection,
mojo::InterfaceRequest<devtools_service::DevToolsAgent> request) override;
// mojo::InterfaceFactory<mus::WindowTreeClient>:
void Create(
- mojo::ApplicationConnection* connection,
+ mojo::Connection* connection,
mojo::InterfaceRequest<mus::mojom::WindowTreeClient> request) override;
scoped_ptr<mojo::AppRefCount> app_refcount_;
mojo::Shell* html_document_shell_;
- mojo::ApplicationConnection* connection_;
+ mojo::Connection* connection_;
// HTMLDocument owns these pointers; binding requests after document load.
std::set<AxProviderImpl*> ax_providers_;
« no previous file with comments | « components/html_viewer/blink_platform_impl.cc ('k') | components/html_viewer/html_document.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698