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

Side by Side Diff: chrome/browser/feedback/feedback_uploader_chrome.h

Issue 225183018: Move feedback files into src/components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest Created 6 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 2014 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_FEEDBACK_FEEDBACK_UPLOADER_CHROME_H_
6 #define CHROME_BROWSER_FEEDBACK_FEEDBACK_UPLOADER_CHROME_H_
7
8 #include "chrome/browser/feedback/feedback_uploader.h"
9
10 #include "components/keyed_service/core/keyed_service.h"
11
12 namespace content {
13 class BrowserContext;
14 }
15
16 namespace feedback {
17
18 class FeedbackUploaderChrome : public FeedbackUploader,
19 public KeyedService {
20 public:
21 explicit FeedbackUploaderChrome(content::BrowserContext* context);
22
23 virtual void DispatchReport(const std::string& data) OVERRIDE;
24
25 private:
26 // Browser context this uploader was created for.
27 content::BrowserContext* context_;
28
29 DISALLOW_COPY_AND_ASSIGN(FeedbackUploaderChrome);
30 };
31
32 } // namespace feedback
33
34 #endif // CHROME_BROWSER_FEEDBACK_FEEDBACK_UPLOADER_CHROME_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698