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

Side by Side Diff: components/html_viewer/html_document_application_delegate.cc

Issue 1565343003: Move mojo/application/public -> mojo/shell/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@fetcher
Patch Set: . Created 4 years, 11 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "components/html_viewer/html_document_application_delegate.h" 5 #include "components/html_viewer/html_document_application_delegate.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "components/html_viewer/global_state.h" 11 #include "components/html_viewer/global_state.h"
12 #include "components/html_viewer/html_document.h" 12 #include "components/html_viewer/html_document.h"
13 #include "mojo/application/public/cpp/application_connection.h" 13 #include "mojo/shell/public/cpp/application_connection.h"
14 #include "mojo/application/public/cpp/application_delegate.h" 14 #include "mojo/shell/public/cpp/application_delegate.h"
15 #include "mojo/application/public/cpp/connect.h" 15 #include "mojo/shell/public/cpp/connect.h"
16 16
17 namespace html_viewer { 17 namespace html_viewer {
18 18
19 // ServiceConnectorQueue records all incoming service requests and processes 19 // ServiceConnectorQueue records all incoming service requests and processes
20 // them once PushRequestsTo() is called. This is useful if you need to delay 20 // them once PushRequestsTo() is called. This is useful if you need to delay
21 // processing incoming service requests. 21 // processing incoming service requests.
22 class HTMLDocumentApplicationDelegate::ServiceConnectorQueue 22 class HTMLDocumentApplicationDelegate::ServiceConnectorQueue
23 : public mojo::ServiceConnector { 23 : public mojo::ServiceConnector {
24 public: 24 public:
25 ServiceConnectorQueue() {} 25 ServiceConnectorQueue() {}
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 HTMLFrame::CreateParams* params) { 178 HTMLFrame::CreateParams* params) {
179 return new HTMLFrame(params); 179 return new HTMLFrame(params);
180 } 180 }
181 181
182 HTMLWidgetRootLocal* HTMLDocumentApplicationDelegate::CreateHTMLWidgetRootLocal( 182 HTMLWidgetRootLocal* HTMLDocumentApplicationDelegate::CreateHTMLWidgetRootLocal(
183 HTMLWidgetRootLocal::CreateParams* params) { 183 HTMLWidgetRootLocal::CreateParams* params) {
184 return new HTMLWidgetRootLocal(params); 184 return new HTMLWidgetRootLocal(params);
185 } 185 }
186 186
187 } // namespace html_viewer 187 } // namespace html_viewer
OLDNEW
« no previous file with comments | « components/html_viewer/html_document_application_delegate.h ('k') | components/html_viewer/html_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698