summaryrefslogtreecommitdiffstats
path: root/chrome/browser/feedback/feedback_profile_observer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/feedback/feedback_profile_observer.cc')
-rw-r--r--chrome/browser/feedback/feedback_profile_observer.cc60
1 files changed, 60 insertions, 0 deletions
diff --git a/chrome/browser/feedback/feedback_profile_observer.cc b/chrome/browser/feedback/feedback_profile_observer.cc
new file mode 100644
index 0000000..0ec0b73
--- /dev/null
+++ b/chrome/browser/feedback/feedback_profile_observer.cc
@@ -0,0 +1,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