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

Side by Side Diff: chrome/browser/extensions/api/feedback_private/log_source_resource.cc

Issue 2840103002: Add new API function: feedbackPrivate.readLogSource (Closed)
Patch Set: Addressed comments from Patch Set 4 Created 3 years, 7 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 2017 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 #include "chrome/browser/extensions/api/feedback_private/log_source_resource.h"
6
7 namespace extensions {
8
9 LogSourceResource::LogSourceResource(const std::string& extension_id,
10 system_logs::SingleLogSource* source,
11 base::Closure unregister_callback)
12 : ApiResource(extension_id),
13 source_(source),
14 unregister_runner_(unregister_callback) {}
15
16 LogSourceResource::~LogSourceResource() {}
17
18 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698