OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BrowserPlugin
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/content/renderer/browser_plugin/
mock_browser_plugin.h
12
class MockBrowserPlugin : public
BrowserPlugin
{
20
using
BrowserPlugin
::OnAttachACK;
21
using
BrowserPlugin
::guest_crashed_;
22
using
BrowserPlugin
::pending_damage_buffer_;
23
using
BrowserPlugin
::damage_buffer_sequence_id_;
browser_plugin_manager.h
22
class
BrowserPlugin
;
27
//
BrowserPlugin
object based on its instance ID.
43
// Creates a new
BrowserPlugin
object.
44
//
BrowserPlugin
is responsible for associating itself with the
47
virtual
BrowserPlugin
* CreateBrowserPlugin(
54
const base::WeakPtr<
BrowserPlugin
>& browser_plugin) = 0;
56
void AddBrowserPlugin(int guest_instance_id,
BrowserPlugin
* browser_plugin);
58
BrowserPlugin
* GetBrowserPlugin(int guest_instance_id) const;
83
IDMap<
BrowserPlugin
> instances_;
mock_browser_plugin.cc
12
:
BrowserPlugin
(render_view, frame) {
mock_browser_plugin_manager.h
21
virtual
BrowserPlugin
* CreateBrowserPlugin(
24
const base::WeakPtr<
BrowserPlugin
>& browser_plugin) OVERRIDE;
34
void AllocateInstanceIDACK(
BrowserPlugin
* browser_plugin,
browser_plugin.cc
63
BrowserPlugin
*> PluginContainerMap;
69
BrowserPlugin
::
BrowserPlugin
(RenderViewImpl* render_view,
95
BrowserPlugin
::~
BrowserPlugin
() {
96
// If the
BrowserPlugin
has never navigated then the browser process and
108
BrowserPlugin
*
BrowserPlugin
::FromContainer(
115
bool
BrowserPlugin
::OnMessageReceived(const IPC::Message& message) {
117
IPC_BEGIN_MESSAGE_MAP(
BrowserPlugin
, message
[
all
...]
browser_plugin_bindings.h
15
class
BrowserPlugin
;
32
explicit BrowserPluginBindings(
BrowserPlugin
* instance);
37
BrowserPlugin
* instance() const { return instance_; }
53
BrowserPlugin
* instance_;
browser_plugin_manager.cc
36
BrowserPlugin
* browser_plugin) {
44
BrowserPlugin
* BrowserPluginManager::GetBrowserPlugin(
50
IDMap<
BrowserPlugin
>::iterator iter(&instances_);
58
IDMap<
BrowserPlugin
>::iterator iter(&instances_);
browser_plugin_manager_impl.cc
25
BrowserPlugin
* BrowserPluginManagerImpl::CreateBrowserPlugin(
28
return new
BrowserPlugin
(render_view, frame);
32
const base::WeakPtr<
BrowserPlugin
>& browser_plugin) {
46
if (
BrowserPlugin
::ShouldForwardToBrowserPlugin(message)) {
53
BrowserPlugin
* plugin = GetBrowserPlugin(guest_instance_id);
70
IDMap<
BrowserPlugin
>::iterator iter(&instances_);
86
const base::WeakPtr<
BrowserPlugin
> plugin(it->second);
98
IDMap<
BrowserPlugin
>::iterator it(&instances_);
101
const
BrowserPlugin
* plugin = it.GetCurrentValue();
browser_plugin_manager_impl.h
24
virtual
BrowserPlugin
* CreateBrowserPlugin(
28
const base::WeakPtr<
BrowserPlugin
>& browser_plugin) OVERRIDE;
48
typedef std::map<int, const base::WeakPtr<
BrowserPlugin
> > InstanceIDMap;
mock_browser_plugin_manager.cc
23
BrowserPlugin
* MockBrowserPluginManager::CreateBrowserPlugin(
29
const base::WeakPtr<
BrowserPlugin
>& browser_plugin) {
40
BrowserPlugin
* browser_plugin,
browser_plugin.h
37
class CONTENT_EXPORT
BrowserPlugin
:
46
static
BrowserPlugin
* FromContainer(blink::WebPluginContainer* container);
68
//
BrowserPlugin
accordingly.
70
// Get the src attribute value of the
BrowserPlugin
instance.
72
// Parse the src attribute value of the
BrowserPlugin
instance.
91
// this instance of
BrowserPlugin
. If an error occurs, the |error_message| is
104
// Returns whether this
BrowserPlugin
has requested an instance ID.
106
// Returns whether this
BrowserPlugin
has allocated an instance ID.
110
// encapsulating a
BrowserPlugin
.
137
// this
BrowserPlugin
instance to that guest. |extra_params| are parameter
[
all
...]
browser_plugin_bindings.cc
278
BOOLEAN_TO_NPVARIANT(
BrowserPlugin
::AttachWindowTo(node, window_id),
663
BrowserPluginBindings::BrowserPluginBindings(
BrowserPlugin
* instance)
/external/chromium_org/chrome/renderer/resources/extensions/
ad_view.js
148
// a series of undefined attributes to
BrowserPlugin
.
299
// updates the
BrowserPlugin
properties accordingly. In turn, updating
300
// a
BrowserPlugin
property will update the corresponding
BrowserPlugin
301
// attribute, if necessary. See
BrowserPlugin
::UpdateDOMAttribute for more
324
// This observer monitors mutations to attributes of the
BrowserPlugin
and
327
// If an attribute is removed from the
BrowserPlugin
, then remove it
331
// Update the <adview> attribute to match the
BrowserPlugin
attribute.
333
// observer which will then propagate that attribute to
BrowserPlugin
. In
334
// cases where we permit assigning a
BrowserPlugin
attribute the same valu
[
all
...]
web_view.js
169
// We create
BrowserPlugin
as a custom element in order to observe changes
171
var browserPluginNode = new WebViewInternal.
BrowserPlugin
();
186
// a series of undefined attributes to
BrowserPlugin
.
216
// Focus the
BrowserPlugin
when the <webview> takes focus.
220
// Blur the
BrowserPlugin
when the <webview> loses focus.
338
// Give the
BrowserPlugin
first stab at the attribute so that it can
350
// <webview> src does not quite behave the same as
BrowserPlugin
src, and so
429
// updates the
BrowserPlugin
properties accordingly. In turn, updating
430
// a
BrowserPlugin
property will update the corresponding
BrowserPlugin
[
all
...]
/external/chromium_org/chrome/renderer/plugins/
plugin_uma_unittest.cc
78
TEST_F(PluginUMATest,
BrowserPlugin
) {
Completed in 50 milliseconds