// 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::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(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