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

Side by Side Diff: content/browser/tracing/background_tracing_endpoint.cc

Issue 1089253003: Re-land first pass BackgroundTracingManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More tests. Created 5 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved.
oystein (OOO til 10th of July) 2015/04/21 17:31:43 nit: no (c)
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 #include "content/browser/tracing/background_tracing_endpoint.h"
5
6 #include "base/logging.h"
oystein (OOO til 10th of July) 2015/04/21 17:31:43 needed?
7 #include "base/memory/ref_counted_memory.h"
8 #include "base/memory/scoped_ptr.h"
9 #include "third_party/zlib/zlib.h"
oystein (OOO til 10th of July) 2015/04/21 17:31:43 needed?
10
11 BackgroundTracingEndpoint::BackgroundTracingEndpoint() {
12 }
13
14 BackgroundTracingEndpoint::~BackgroundTracingEndpoint() {
15 }
16
17 void BackgroundTracingEndpoint::SetDoneCallback(DoneCallback done_callback) {
18 done_callback_ = done_callback;
19 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698