blob: 7668229690e3eeca3f654ef0cb9ff39102c5b878 (
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
|
// Copyright 2015 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/background_sync/background_sync_controller_impl.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/profiles/profile.h"
#include "components/rappor/rappor_utils.h"
BackgroundSyncControllerImpl::BackgroundSyncControllerImpl(Profile* profile)
: profile_(profile) {}
BackgroundSyncControllerImpl::~BackgroundSyncControllerImpl() = default;
rappor::RapporService* BackgroundSyncControllerImpl::GetRapporService() {
return g_browser_process->rappor_service();
}
void BackgroundSyncControllerImpl::NotifyBackgroundSyncRegistered(
const GURL& origin) {
DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
DCHECK_EQ(origin, origin.GetOrigin());
if (profile_->IsOffTheRecord())
return;
rappor::SampleDomainAndRegistryFromGURL(
GetRapporService(), "BackgroundSync.Register.Origin", origin);
}
|