Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(103)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: mojo/shell/shell.mojom
Issue
93793009
:
Implement ServiceManager (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup
Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
mojo/common/handle_watcher.cc
mojo/examples/sample_app/native_viewport_client_impl.h
mojo/examples/sample_app/native_viewport_client_impl.cc
mojo/examples/sample_app/sample_app.cc
mojo/mojo.gyp
mojo/mojo_examples.gypi
mojo/mojo_services.gypi
mojo/services/DEPS
mojo/services/native_viewport/native_viewport.h
mojo/services/native_viewport/native_viewport_impl.h
mojo/services/native_viewport/native_viewport_impl.cc
mojo/services/native_viewport/native_viewport_x11.cc
mojo/shell/app_container.h
mojo/shell/app_container.cc
mojo/shell/desktop/mojo_main.cc
mojo/shell/loader.cc
mojo/shell/network_delegate.cc
mojo/shell/run.cc
mojo/shell/service_manager.h
mojo/shell/service_manager.cc
mojo/shell/shell.mojom
mojo/shell/switches.h
mojo/shell/switches.cc
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« mojo/shell/service_manager.cc
('K') |
« mojo/shell/service_manager.cc
('k') |
mojo/shell/switches.h »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
1
// Copyright 2013 The Chromium Authors. All rights reserved.
2
// Use of this source code is governed by a BSD-style license that can be
3
// found in the LICENSE file.
4
5
module shell {
6
7
[Peer=ShellClient]
8
interface Shell {
9
// Loads lib|app_name|.so relative to the parent application.
10
void Connect(string app_name, handle<message_pipe> client_pipe);
11
};
12
13
[Peer=Shell]
14
interface ShellClient {
15
void Connect(handle<message_pipe> client_pipe);
16
};
17
18
}
OLD
NEW
« mojo/shell/service_manager.cc
('K') |
« mojo/shell/service_manager.cc
('k') |
mojo/shell/switches.h »
('j') |
no next file with comments »
Issue 93793009: Implement ServiceManager (Closed)
Created 7 years ago by DaveMoore
Modified 7 years ago
Reviewers: abarth-chromium, beng (no_code_reviews), darin (slow to review)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 76
This is Rietveld
408576698