Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |