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

Unified Diff: mojo/shell/content_handler_connection.h

Issue 1351443004: Revert of Make CapabilityFilter be part of Identity (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « mojo/shell/connect_util.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
index b71422f44b7897dc4b4680aca0fec2a47d2fff25..bf4f74e3ae712cb2903fd859657b162225b2ad32 100644
--- a/mojo/shell/content_handler_connection.h
+++ b/mojo/shell/content_handler_connection.h
@@ -8,14 +8,14 @@
#include <string>
#include "mojo/application/public/interfaces/content_handler.mojom.h"
-#include "mojo/shell/identity.h"
+#include "mojo/shell/capability_filter.h"
#include "url/gurl.h"
namespace mojo {
namespace shell {
class ApplicationManager;
-class Identity;
+struct Identity;
// A ContentHandlerConnection is responsible for creating and maintaining a
// connection to an app which provides the ContentHandler service.
@@ -27,22 +27,29 @@
public:
// |id| is a unique identifier for this content handler.
ContentHandlerConnection(ApplicationManager* manager,
- const Identity& source,
- const Identity& content_handler,
+ const Identity& originator_identity,
+ const CapabilityFilter& originator_filter,
+ const GURL& content_handler_url,
+ const std::string& qualifier,
+ const CapabilityFilter& filter,
uint32_t id);
// Closes the connection and destroys |this| object.
void CloseConnection();
ContentHandler* content_handler() { return content_handler_.get(); }
- const Identity& identity() const { return identity_; }
+ const GURL& content_handler_url() { return content_handler_url_; }
+ const std::string& content_handler_qualifier() {
+ return content_handler_qualifier_;
+ }
uint32_t id() const { return id_; }
private:
~ContentHandlerConnection();
ApplicationManager* manager_;
- Identity identity_;
+ GURL content_handler_url_;
+ std::string content_handler_qualifier_;
ContentHandlerPtr content_handler_;
bool connection_closed_;
// The id for this content handler.
« no previous file with comments | « mojo/shell/connect_util.cc ('k') | mojo/shell/content_handler_connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698