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

Unified Diff: services/shell/tests/connect/connect_test.mojom

Issue 2419723002: Move services/shell to services/service_manager (Closed)
Patch Set: rebase Created 4 years, 2 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 | « services/shell/tests/connect/OWNERS ('k') | services/shell/tests/connect/connect_test_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/tests/connect/connect_test.mojom
diff --git a/services/shell/tests/connect/connect_test.mojom b/services/shell/tests/connect/connect_test.mojom
deleted file mode 100644
index a8af94cc796fc16adf0c18a0052ddea4c3e3f98b..0000000000000000000000000000000000000000
--- a/services/shell/tests/connect/connect_test.mojom
+++ /dev/null
@@ -1,65 +0,0 @@
-// Copyright 2016 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.
-
-module shell.test.mojom;
-
-import "services/shell/public/interfaces/connector.mojom";
-
-interface ConnectTestService {
- GetTitle() => (string title);
- GetInstance() => (string instance);
-};
-
-interface ClassInterface {
- Ping() => (string response);
-};
-
-// Interface implemented by a standalone (non-package) app,
-// mojo:connect_test_app.
-interface StandaloneApp {
- // Attempts to connect to an application whose name is explicitly allowed by
- // the standalone app's CapabilitySpec, but whose enclosing package is not.
- // The connection should succeed anyway.
- ConnectToAllowedAppInBlockedPackage() => (string title);
-
- // Connects to mojo:connect_test_class_app & requests ClassInterface from it.
- // This should be permitted because mojo:connect_test_app requests class
- // "class" from mojo:connect_test_class_app, which mojo:connect_test_class_app
- // defines as including ClassInterface.
- // The response contains the response from ClassInterface::Ping() and
- // ConnectTestService::GetTitle().
- ConnectToClassInterface() => (string class_interface_response, string title);
-};
-
-interface UserIdTest {
- // Attempts to connect to mojo:connect_test_class_app as |user_id|.
- // The callback takes the connection response result, and the identity
- // mojo:connect_test_class_app was run as, which should match |user_id|.
- ConnectToClassAppAsDifferentUser(shell.mojom.Identity target) =>
- (int32 connection_result, shell.mojom.Identity target);
-};
-
-interface ClientProcessTest {
- // Attempts to launch a bare exe and connect to it using the
- // ClientProcessConnection param to Connector::Connect(). The callback takes
- // the result of the connection, and the identity of the app that the caller
- // can use to connect to this app as well.
- LaunchAndConnectToProcess() =>
- (int32 connection_result, shell.mojom.Identity target);
-};
-
-struct ConnectionState {
- string connection_remote_name;
- string connection_remote_userid;
- string initialize_local_name;
- string initialize_userid;
-};
-
-interface ExposedInterface {
- ConnectionAccepted(ConnectionState state);
-};
-
-interface BlockedInterface {
- GetTitleBlocked() => (string blocked_title);
-};
« no previous file with comments | « services/shell/tests/connect/OWNERS ('k') | services/shell/tests/connect/connect_test_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698