OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ChromeViewHostMsg_GetPluginInfo_Status
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/chrome/browser/plugins/
plugin_info_message_filter.cc
200
ChromeViewHostMsg_GetPluginInfo_Status
* status) const {
205
ChromeViewHostMsg_GetPluginInfo_Status
::kNPAPINotSupported;
215
ChromeViewHostMsg_GetPluginInfo_Status
::kNPAPINotSupported;
237
ChromeViewHostMsg_GetPluginInfo_Status
::kOutdatedDisallowed;
239
status->value =
ChromeViewHostMsg_GetPluginInfo_Status
::kOutdatedBlocked;
262
status->value =
ChromeViewHostMsg_GetPluginInfo_Status
::kUnauthorized;
271
status->value =
ChromeViewHostMsg_GetPluginInfo_Status
::kUnauthorized;
276
status->value =
ChromeViewHostMsg_GetPluginInfo_Status
::kClickToPlay;
278
status->value =
ChromeViewHostMsg_GetPluginInfo_Status
::kBlocked;
280
if (status->value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kAllowed)
[
all
...]
plugin_info_message_filter.h
20
struct
ChromeViewHostMsg_GetPluginInfo_Status
;
49
ChromeViewHostMsg_GetPluginInfo_Status
* status) const;
54
ChromeViewHostMsg_GetPluginInfo_Status
* status,
64
void MaybeGrantAccess(const
ChromeViewHostMsg_GetPluginInfo_Status
& status,
/external/chromium_org/chrome/browser/renderer_host/
plugin_info_message_filter_unittest.cc
138
ChromeViewHostMsg_GetPluginInfo_Status
status;
144
EXPECT_EQ(
ChromeViewHostMsg_GetPluginInfo_Status
::kAllowed, status.value);
150
ChromeViewHostMsg_GetPluginInfo_Status
status;
156
EXPECT_EQ(
ChromeViewHostMsg_GetPluginInfo_Status
::kAllowed, status.value);
162
ChromeViewHostMsg_GetPluginInfo_Status
status;
170
EXPECT_EQ(
ChromeViewHostMsg_GetPluginInfo_Status
::kDisabled, status.value);
174
ChromeViewHostMsg_GetPluginInfo_Status
status;
180
EXPECT_EQ(
ChromeViewHostMsg_GetPluginInfo_Status
::kNotFound, status.value);
/external/chromium_org/chrome/renderer/plugins/
chrome_plugin_placeholder.h
10
struct
ChromeViewHostMsg_GetPluginInfo_Status
;
38
void SetStatus(const
ChromeViewHostMsg_GetPluginInfo_Status
& status);
86
scoped_ptr<
ChromeViewHostMsg_GetPluginInfo_Status
> status_;
chrome_plugin_placeholder.cc
85
status_(new
ChromeViewHostMsg_GetPluginInfo_Status
),
199
const
ChromeViewHostMsg_GetPluginInfo_Status
& status) {
265
if (status_->value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kNotFound)
277
status_->value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kNotFound;
/external/chromium_org/chrome/renderer/
chrome_content_renderer_client.cc
452
output.status.value =
ChromeViewHostMsg_GetPluginInfo_Status
::kNotFound;
489
const
ChromeViewHostMsg_GetPluginInfo_Status
& status = output.status;
494
ChromeViewHostMsg_GetPluginInfo_Status
::Value status_value = status.value;
502
if (status_value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kNotFound ||
551
ChromeViewHostMsg_GetPluginInfo_Status
::kUnauthorized ||
552
status_value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kClickToPlay ||
553
status_value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kBlocked) &&
555
status_value =
ChromeViewHostMsg_GetPluginInfo_Status
::kAllowed;
559
if (status_value ==
ChromeViewHostMsg_GetPluginInfo_Status
::kClickToPlay &&
563
status_value =
ChromeViewHostMsg_GetPluginInfo_Status
::kAllowed
[
all
...]
/external/chromium_org/chrome/common/
render_messages.h
63
struct
ChromeViewHostMsg_GetPluginInfo_Status
{
76
ChromeViewHostMsg_GetPluginInfo_Status
() : value(kAllowed) {}
123
IPC_ENUM_TRAITS(
ChromeViewHostMsg_GetPluginInfo_Status
::Value)
134
IPC_STRUCT_TRAITS_BEGIN(
ChromeViewHostMsg_GetPluginInfo_Status
)
140
IPC_STRUCT_MEMBER(
ChromeViewHostMsg_GetPluginInfo_Status
, status)
Completed in 74 milliseconds