752efddf89
* refactor: use private inheritance in CookieChangeNotifier * refactor: use private inheritance in WebViewGuestDelegate * refactor: use private inheritance in UsbChooserController * refactor: use private inheritance in DesktopCapturer * refactor: use private inheritance in Browser * refactor: use private inheritance in WebContentsZoomController * refactor: use private inheritance in FrameSubscriber * refactor: use private inheritance in AutofillAgent * refactor: use private inheritance in HidChooserController * refactor: use private inheritance in PepperHelper * refactor: use private inheritance in AutofillPopup * refactor: use private inheritance in SerialChooserController * refactor: use private inheritance in MediaCaptureDevicesDispatcher * refactor: use private inheritance in electron::api::View * refactor: use private inheritance in AutofillDriverFactory * refactor: use private inheritance in GPUInfoManager * refactor: use private inheritance in SavePageHandler * refactor: use private inheritance in GlobalShortcut * refactor: use private inheritance in ElectronRenderFrameObserver
29 lines
1,001 B
C++
29 lines
1,001 B
C++
// Copyright (c) 2012 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 ELECTRON_SHELL_RENDERER_PEPPER_HELPER_H_
|
|
#define ELECTRON_SHELL_RENDERER_PEPPER_HELPER_H_
|
|
|
|
#include "base/compiler_specific.h"
|
|
#include "base/component_export.h"
|
|
#include "content/public/renderer/render_frame_observer.h"
|
|
|
|
// This class listens for Pepper creation events from the RenderFrame and
|
|
// attaches the parts required for plugin support.
|
|
class PepperHelper : private content::RenderFrameObserver {
|
|
public:
|
|
explicit PepperHelper(content::RenderFrame* render_frame);
|
|
~PepperHelper() override;
|
|
|
|
// disable copy
|
|
PepperHelper(const PepperHelper&) = delete;
|
|
PepperHelper& operator=(const PepperHelper&) = delete;
|
|
|
|
private:
|
|
// RenderFrameObserver.
|
|
void DidCreatePepperPlugin(content::RendererPpapiHost* host) override;
|
|
void OnDestruct() override;
|
|
};
|
|
|
|
#endif // ELECTRON_SHELL_RENDERER_PEPPER_HELPER_H_
|