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

Side by Side Diff: chrome/browser/media/webrtc_log_upload_list.h

Issue 17063004: Adding WebRTC log upload list under chrome://webrtc-logs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/media/webrtc_log_upload_list.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 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 CHROME_BROWSER_MEDIA_WEBRTC_LOG_UPLOAD_LIST_H_
6 #define CHROME_BROWSER_MEDIA_WEBRTC_LOG_UPLOAD_LIST_H_
7
8 #include "chrome/browser/upload_list.h"
9
10 // Loads and parses a text file list of uploaded WebRTC logs.
11 class WebRtcLogUploadList : public UploadList {
12 public:
13 // Creates the WebRTC log upload list with the given callback delegate.
14 static WebRtcLogUploadList* Create(Delegate* delegate);
15
16 // Used in this class when reading the list file and in WebRtcLogUploader when
17 // writing to the list file.
18 static const char* kWebRtcLogListFilename;
19
20 // Creates a new WebRTC log upload list with the given callback delegate.
21 // |upload_log_path| is the full path to the file to read the list from.
22 explicit WebRtcLogUploadList(Delegate* delegate,
23 const base::FilePath& upload_log_path);
24
25 protected:
26 virtual ~WebRtcLogUploadList();
27
28 private:
29 DISALLOW_COPY_AND_ASSIGN(WebRtcLogUploadList);
30 };
31
32 #endif // CHROME_BROWSER_MEDIA_WEBRTC_LOG_UPLOAD_LIST_H_
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/media/webrtc_log_upload_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698