blob: 99964df100976a90b6639efa217980a93a04acb1 (
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
|
// 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.
#ifndef CHROME_BROWSER_TRACING_CHROME_TRACING_DELEGATE_H_
#define CHROME_BROWSER_TRACING_CHROME_TRACING_DELEGATE_H_
#include "chrome/browser/ui/browser_list_observer.h"
#include "content/public/browser/tracing_delegate.h"
class PrefRegistrySimple;
class ChromeTracingDelegate : public content::TracingDelegate,
public chrome::BrowserListObserver {
public:
ChromeTracingDelegate();
~ChromeTracingDelegate() override;
static void RegisterPrefs(PrefRegistrySimple* registry);
scoped_ptr<content::TraceUploader> GetTraceUploader(
net::URLRequestContextGetter* request_context) override;
bool IsAllowedToBeginBackgroundScenario(
const content::BackgroundTracingConfig& config,
bool requires_anonymized_data) override;
bool IsAllowedToEndBackgroundScenario(
const content::BackgroundTracingConfig& config,
bool requires_anonymized_data) override;
private:
// chrome::BrowserListObserver implementation.
void OnBrowserAdded(Browser* browser) override;
bool incognito_launched_;
};
#endif // CHROME_BROWSER_TRACING_CHROME_TRACING_DELEGATE_H_
|