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

Unified Diff: mojo/shell/content_handler_connection.h

Issue 1705323003: ContentHandler -> ShellClientFactory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@delete
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 | « mojo/shell/application_manager.cc ('k') | mojo/shell/content_handler_connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/content_handler_connection.h
diff --git a/mojo/shell/content_handler_connection.h b/mojo/shell/content_handler_connection.h
deleted file mode 100644
index 7b053544703089dcab8cf54f1a2d19facdb4a038..0000000000000000000000000000000000000000
--- a/mojo/shell/content_handler_connection.h
+++ /dev/null
@@ -1,67 +0,0 @@
-// Copyright 2015 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef MOJO_SHELL_CONTENT_HANDLER_CONNECTION_H_
-#define MOJO_SHELL_CONTENT_HANDLER_CONNECTION_H_
-
-#include <stdint.h>
-
-#include <string>
-
-#include "base/callback.h"
-#include "base/macros.h"
-#include "mojo/shell/identity.h"
-#include "mojo/shell/public/interfaces/content_handler.mojom.h"
-#include "url/gurl.h"
-
-namespace mojo {
-namespace shell {
-class ApplicationManager;
-
-// A ContentHandlerConnection is responsible for creating and maintaining a
-// connection to an app which provides the ContentHandler service.
-// A ContentHandlerConnection can only be destroyed via CloseConnection.
-// A ContentHandlerConnection manages its own lifetime and cannot be used with
-// a scoped_ptr to avoid reentrant calls into ApplicationManager late in
-// destruction.
-class ContentHandlerConnection {
- public:
- using ClosedCallback = base::Callback<void(ContentHandlerConnection*)>;
- // |id| is a unique identifier for this content handler.
- ContentHandlerConnection(ApplicationManager* manager,
- const Identity& source,
- const Identity& content_handler,
- uint32_t id,
- const ClosedCallback& connection_closed_callback);
-
- void StartApplication(InterfaceRequest<mojom::ShellClient> request,
- URLResponsePtr response);
-
- // Closes the connection and destroys |this| object.
- void CloseConnection();
-
- const Identity& identity() const { return identity_; }
- uint32_t id() const { return id_; }
-
- private:
- ~ContentHandlerConnection();
-
- void ApplicationDestructed();
-
- ClosedCallback connection_closed_callback_;
- Identity identity_;
-
- mojom::ContentHandlerPtr content_handler_;
- bool connection_closed_;
- // The id for this content handler.
- const uint32_t id_;
- int ref_count_;
-
- DISALLOW_COPY_AND_ASSIGN(ContentHandlerConnection);
-};
-
-} // namespace shell
-} // namespace mojo
-
-#endif // MOJO_SHELL_CONTENT_HANDLER_CONNECTION_H_
« no previous file with comments | « mojo/shell/application_manager.cc ('k') | mojo/shell/content_handler_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698