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
(563)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: runtime/bin/dbg_connection_win.cc
Issue
10357003
:
Beginnings of a debugger wire protocol (Closed)
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set:
Created 8 years, 7 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:
runtime/bin/builtin_impl_sources.gypi
runtime/bin/dbg_connection.h
runtime/bin/dbg_connection.cc
runtime/bin/dbg_connection_linux.h
runtime/bin/dbg_connection_linux.cc
runtime/bin/dbg_connection_macos.h
runtime/bin/dbg_connection_macos.cc
runtime/bin/dbg_connection_win.h
runtime/bin/dbg_connection_win.cc
runtime/bin/fdutils.h
runtime/bin/fdutils_linux.cc
runtime/bin/fdutils_macos.cc
runtime/bin/main.cc
runtime/lib/mirrors.cc
runtime/platform/json.h
runtime/platform/json.cc
runtime/platform/platform_headers.gypi
runtime/platform/platform_sources.gypi
runtime/vm/json.h
runtime/vm/json.cc
runtime/vm/json_test.cc
runtime/vm/vm_sources.gypi
View unified diff
|
Download patch
|
Annotate
|
Revision Log
« no previous file with comments
|
« runtime/bin/dbg_connection_win.h
('k') |
runtime/bin/fdutils.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 (c) 2012, the Dart project authors. Please see the AUTHORS file
2
// for details. All rights reserved. Use of this source code is governed by a
3
// BSD-style license that can be found in the LICENSE file.
4
5
#include <errno.h>
6
#include <stdio.h>
7
#include <stdlib.h>
8
#include <string.h>
9
#include <unistd.h>
10
11
#include "bin/fdutils.h"
12
#include "bin/socket.h"
13
14
void DebuggerConnectionImpl::StartHandler(int port_number) {
15
FATAL("Debugger wire protocol not yet implemented on Linux\n");
16
}
17
OLD
NEW
« no previous file with comments
|
« runtime/bin/dbg_connection_win.h
('k') |
runtime/bin/fdutils.h »
('j') |
no next file with comments »
Issue 10357003: Beginnings of a debugger wire protocol (Closed)
Created 8 years, 7 months ago by hausner
Modified 8 years, 7 months ago
Reviewers: siva
Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Comments: 26
This is Rietveld
408576698