blob: 0ec0b7349294fdb97561d55e668d2e69f170dfec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/feedback/feedback_profile_observer.h"
#include "base/callback.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/feedback/feedback_report.h"
#include "chrome/browser/feedback/feedback_uploader.h"
#include "chrome/browser/feedback/feedback_uploader_factory.h"
#include "chrome/browser/profiles/profile.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_service.h"
using content::BrowserThread;
static base::LazyInstance<feedback::FeedbackProfileObserver>::Leaky
g_feedback_profile_observer = LAZY_INSTANCE_INITIALIZER;
namespace feedback {
// static
void FeedbackProfileObserver::Initialize() {
g_feedback_profile_observer.Get();
}
FeedbackProfileObserver::FeedbackProfileObserver() {
prefs_registrar_.Add(this, chrome::NOTIFICATION_PROFILE_CREATED,
content::NotificationService::AllSources());
}
FeedbackProfileObserver::~FeedbackProfileObserver() {
prefs_registrar_.RemoveAll();
}
void FeedbackProfileObserver::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK_EQ(chrome::NOTIFICATION_PROFILE_CREATED, type);
Profile* profile = content::Source<Profile>(source).ptr();
if (!profile->IsOffTheRecord())
QueueUnsentReports(profile);
}
void FeedbackProfileObserver::QueueUnsentReports(
content::BrowserContext* context) {
feedback::FeedbackUploader* uploader =
feedback::FeedbackUploaderFactory::GetForBrowserContext(context);
BrowserThread::PostBlockingPoolTask(FROM_HERE,
base::Bind(
&FeedbackReport::LoadReportsAndQueue, context, base::Bind(
&FeedbackUploader::QueueReport, uploader->AsWeakPtr())));
}
} // namespace feedback
|