blob: 1db487c622fec5c24e38bf8ab168aa1c2e9c30c3 (
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
|
// 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.
#ifndef CHROME_BROWSER_GPU_THREE_D_API_OBSERVER_H_
#define CHROME_BROWSER_GPU_THREE_D_API_OBSERVER_H_
#include "base/compiler_specific.h"
#include "content/public/browser/gpu_data_manager_observer.h"
class ThreeDAPIObserver : public content::GpuDataManagerObserver {
public:
ThreeDAPIObserver();
~ThreeDAPIObserver() override;
private:
void DidBlock3DAPIs(const GURL& top_origin_url,
int render_process_id,
int render_frame_id,
content::ThreeDAPIType requester) override;
DISALLOW_COPY_AND_ASSIGN(ThreeDAPIObserver);
};
#endif // CHROME_BROWSER_GPU_THREE_D_API_OBSERVER_H_
|