OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebRequestAction
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/chrome/browser/extensions/api/declarative_webrequest/
webrequest_action.h
53
class
WebRequestAction
: public base::RefCounted<
WebRequestAction
> {
83
// Information necessary to decide how to apply a
WebRequestAction
104
virtual bool Equals(const
WebRequestAction
* other) const;
130
// Factory method that instantiates a concrete
WebRequestAction
132
//
WebRequestAction
as received from the extension API.
136
static scoped_refptr<const
WebRequestAction
> Create(
155
friend class base::RefCounted<
WebRequestAction
>;
156
virtual ~
WebRequestAction
();
157
WebRequestAction
(int stages
[
all
...]
webrequest_action.cc
44
return scoped_refptr<const
WebRequestAction
>(NULL); \
109
scoped_refptr<const
WebRequestAction
> CallConstructorFactoryMethod(
114
return scoped_refptr<const
WebRequestAction
>(new T);
117
scoped_refptr<const
WebRequestAction
> CreateRedirectRequestAction(
128
return scoped_refptr<const
WebRequestAction
>(
132
scoped_refptr<const
WebRequestAction
> CreateRedirectRequestByRegExAction(
152
return scoped_refptr<const
WebRequestAction
>(NULL);
154
return scoped_refptr<const
WebRequestAction
>(
158
scoped_refptr<const
WebRequestAction
> CreateSetRequestHeaderAction(
169
return scoped_refptr<const
WebRequestAction
>(
[
all
...]
webrequest_action_unittest.cc
144
WebRequestAction
::ApplyInfo apply_info = { extension_info_map_.get(),
178
scoped_refptr<const
WebRequestAction
> result;
183
result =
WebRequestAction
::Create(empty_list, &error, &bad_message);
190
result =
WebRequestAction
::Create(input, &error, &bad_message);
197
result =
WebRequestAction
::Create(input, &error, &bad_message);
204
result =
WebRequestAction
::Create(input, &error, &bad_message);
208
EXPECT_EQ(
WebRequestAction
::ACTION_CANCEL_REQUEST, result->type());
241
EXPECT_EQ(
WebRequestAction
::ACTION_IGNORE_RULES,
webrequest_rules_registry.h
44
typedef DeclarativeRule<WebRequestCondition,
WebRequestAction
> WebRequestRule;
webrequest_rules_registry.cc
144
WebRequestAction
::ApplyInfo apply_info = {
353
WebRequestAction
::STRATEGY_DEFAULT) {
Completed in 43 milliseconds