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

Side by Side Diff: content/public/browser/trace_uploader.h

Issue 911153002: Moved the TraceUploader to chrome/ and abstracted it for alternative new upload destinations. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix TraceUploader ownership Created 5 years, 10 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 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_PUBLIC_BROWSER_TRACE_UPLOADER_H_
6 #define CONTENT_PUBLIC_BROWSER_TRACE_UPLOADER_H_
7
8 #include "base/callback.h"
9
10 namespace content {
11
12 class TraceUploader {
Charlie Reis 2015/02/12 17:11:32 Please add a class-level comment, since this is th
oystein (OOO til 10th of July) 2015/02/13 17:02:45 Done.
13 public:
14 typedef base::Callback<void(bool, const std::string&, const std::string&)>
Charlie Reis 2015/02/12 17:11:32 Let's document these callbacks so that embedders k
oystein (OOO til 10th of July) 2015/02/13 17:02:45 Done.
15 UploadDoneCallback;
16 typedef base::Callback<void(int64, int64)> UploadProgressCallback;
17
18 virtual ~TraceUploader() {}
19
20 // Compresses and uploads the given file contents.
21 virtual void DoUpload(const std::string& file_contents,
22 const UploadProgressCallback& progress_callback,
23 const UploadDoneCallback& done_callback) = 0;
24 };
25
26 } // namespace content
27
28 #endif // CONTENT_PUBLIC_BROWSER_TRACE_UPLOADER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698