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
(14)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: remoting/host/installer/linux/debian/preinst
Issue
10860024
:
Handle updates to the wrapper script. (Closed)
Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reinstated spin protection.
Created 8 years, 4 months 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:
remoting/host/installer/linux/Makefile
remoting/host/installer/linux/debian/control
remoting/host/installer/linux/debian/postinst
remoting/host/installer/linux/debian/preinst
remoting/tools/is_me2me_desktop
remoting/tools/me2me_virtual_host.py
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« remoting/host/installer/linux/debian/postinst
('k') |
remoting/tools/is_me2me_desktop »
('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
#!/bin/bash
2
3
# Copyright (c) 2012 The Chromium Authors. All rights reserved.
4
# Use of this source code is governed by a BSD-style license that can be
5
# found in the LICENSE file.
6
7
set -e
8
9
VAR_DIR="/var/lib/chrome-remote-desktop"
10
HASHES_FILE="$VAR_DIR/hashes"
11
12
save_hash() {
13
if [ -f "$1" ]; then
14
mkdir -p "$VAR_DIR"
15
md5sum "$1" >> "$HASHES_FILE"
16
fi
17
}
18
19
case "$1" in
20
"install" | "upgrade")
21
rm -f "$HASHES_FILE"
22
save_hash /usr/bin/me2me_virtual_host
23
;;
24
esac
25
26
#DEBHELPER#
OLD
NEW
« no previous file with comments
|
« remoting/host/installer/linux/debian/postinst
('k') |
remoting/tools/is_me2me_desktop »
('j') |
no next file with comments »
Issue 10860024: Handle updates to the wrapper script. (Closed)
Created 8 years, 4 months ago by Jamie
Modified 8 years, 4 months ago
Reviewers: Lambros
Base URL: svn://svn.chromium.org/chrome/trunk/src
Comments: 5
This is Rietveld
408576698