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
(588)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.cc
Issue
3010263002
:
Events - backup
Patch Set: Compiles
Created 3 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.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
webrtc/logging/BUILD.gn
webrtc/logging/rtc_event_log/events/rtc_event.h
webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.h
webrtc/logging/rtc_event_log/events/rtc_event_audio_network_adaptation.cc
webrtc/logging/rtc_event_log/events/rtc_event_audio_playout.h
webrtc/logging/rtc_event_log/events/rtc_event_audio_playout.cc
webrtc/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.h
webrtc/logging/rtc_event_log/events/rtc_event_audio_send_stream_config.cc
webrtc/logging/rtc_event_log/events/rtc_event_bwe_update_delay_based.h
webrtc/logging/rtc_event_log/events/rtc_event_bwe_update_delay_based.cc
webrtc/logging/rtc_event_log/events/rtc_event_bwe_update_loss_based.h
webrtc/logging/rtc_event_log/events/rtc_event_bwe_update_loss_based.cc
webrtc/logging/rtc_event_log/events/rtc_event_logging_started.h
webrtc/logging/rtc_event_log/events/rtc_event_logging_started.cc
webrtc/logging/rtc_event_log/events/rtc_event_logging_stopped.h
webrtc/logging/rtc_event_log/events/rtc_event_logging_stopped.cc
webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.h
webrtc/logging/rtc_event_log/events/rtc_event_probe_cluster_created.cc
webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.h
webrtc/logging/rtc_event_log/events/rtc_event_probe_result_failure.cc
webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.h
webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header.h
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header_incoming.h
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header_incoming.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header_outgoing.h
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header_outgoing.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header.h
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.h
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_incoming.cc
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_outgoing.h
webrtc/logging/rtc_event_log/events/rtc_event_rtp_header_outgoing.cc
webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.h
webrtc/logging/rtc_event_log/events/rtc_event_video_receive_stream_config.cc
webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.h
webrtc/logging/rtc_event_log/events/rtc_event_video_send_stream_config.cc
webrtc/logging/rtc_event_log/mock/mock_rtc_event_log.h
webrtc/logging/rtc_event_log/rtc_event_log.h
webrtc/logging/rtc_event_log/rtc_event_log.cc
webrtc/voice_engine/channel.cc
View unified diff
|
Download patch
« no previous file with comments
|
« webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.h
('k') |
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header.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
/*
2
* Copyright (c) 2017 The WebRTC project authors. All Rights Reserved.
3
*
4
* Use of this source code is governed by a BSD-style license
5
* that can be found in the LICENSE file in the root of the source
6
* tree. An additional intellectual property rights grant can be found
7
* in the file PATENTS. All contributing project authors may
8
* be found in the AUTHORS file in the root of the source tree.
9
*/
10
11
#include "webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.h"
12
13
namespace webrtc {
14
15
RtcEvent::Type RtcEventProbeResultSuccess::GetType() const {
16
return RtcEvent::Type::ProbeResultSuccess;
17
}
18
19
} // namespace webrtc
OLD
NEW
« no previous file with comments
|
« webrtc/logging/rtc_event_log/events/rtc_event_probe_result_success.h
('k') |
webrtc/logging/rtc_event_log/events/rtc_event_rtcp_header.h »
('j') |
no next file with comments »
Issue 3010263002: Events - backup
Created 3 years, 3 months ago by eladalon
Modified 3 years, 3 months ago
Reviewers:
Base URL:
Comments: 0
This is Rietveld
408576698