Searched defs:arg_url (Results 1 - 8 of 8) sorted by relevance

/external/chromium_org/chrome/browser/extensions/api/activity_log_private/
H A Dactivity_log_private_api.cc136 std::string arg_url = local
137 filter->arg_url.get() ? *filter->arg_url : std::string();
150 arg_url,
/external/chromium_org/chrome/browser/extensions/activity_log/
H A Dfullstream_ui_policy.cc39 "page_title", "arg_url", "other"
78 "page_url, page_title, arg_url, other) VALUES (?,?,?,?,?,?,?,?,?)";
126 const std::string& arg_url,
157 if (!arg_url.empty()) {
158 where_str += where_next + "arg_url LIKE ?";
164 "arg_url,other,rowid FROM %s %s %s ORDER BY time DESC LIMIT 300",
178 if (!arg_url.empty())
179 query.BindString(++i, arg_url + "%");
273 "UPDATE %s SET page_url=NULL,page_title=NULL,arg_url=NULL",
307 sql_str = base::StringPrintf("UPDATE %s SET arg_url
121 DoReadFilteredData( const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int days_ago) argument
390 ReadFilteredData( const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int days_ago, const base::Callback <void(scoped_ptr<Action::ActionVector>)>& callback) argument
[all...]
H A Dfullstream_ui_policy_unittest.cc86 const std::string& arg_url,
97 arg_url,
80 CheckReadFilteredData( ActivityLogDatabasePolicy* policy, const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int days_ago, const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) argument
H A Dactivity_actions.cc97 clone->set_arg_url(arg_url());
174 void Action::set_arg_url(const GURL& arg_url) { argument
175 arg_url_ = arg_url;
202 return (arg_incognito() ? constants::kIncognitoUrl : "") + arg_url().spec();
260 if (arg_url().is_valid())
261 result->arg_url.reset(new std::string(SerializeArgUrl()));
533 if (lhs->arg_url().spec() != rhs->arg_url().spec())
534 return lhs->arg_url().spec() < rhs->arg_url()
[all...]
H A Dactivity_actions.h139 const GURL& arg_url() const { return arg_url_; } function in class:extensions::Action
140 void set_arg_url(const GURL& arg_url);
H A Dcounting_policy.cc113 " x6.value AS arg_url,\n"
424 const std::string& arg_url,
454 if (!arg_url.empty()) {
455 where_str += where_next + "arg_url LIKE ?";
463 "page_title, arg_url, other, count, activity_id FROM %s %s %s ORDER BY "
478 if (!arg_url.empty())
479 query.BindString(++i, arg_url + "%");
613 // Remove any that match the arg_url.
720 const std::string& arg_url,
733 arg_url,
419 DoReadFilteredData( const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int days_ago) argument
715 ReadFilteredData( const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int days_ago, const base::Callback <void(scoped_ptr<Action::ActionVector>)>& callback) argument
[all...]
H A Dcounting_policy_unittest.cc95 const std::string& arg_url,
106 arg_url,
89 CheckReadFilteredData( ActivityLogDatabasePolicy* policy, const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, int day, const base::Callback<void(scoped_ptr<Action::ActionVector>)>& checker) argument
H A Dactivity_log.cc65 // arguments that should be extracted into the arg_url field of an Action.
73 // into arg_url.
236 // Any extracted URL is stored into the arg_url field of the action, and the
237 // URL in the argument list is replaced with the marker value "<arg_url>". For
238 // APIs that take a list of tab IDs, extracts the first valid URL into arg_url
253 // Do not overwrite an existing arg_url value in the Action, so that callers
254 // have the option of doing custom arg_url extraction.
255 if (action->arg_url().is_valid())
258 GURL arg_url;
268 ResolveUrl(action->page_url(), url_string, &arg_url)) {
631 GetFilteredActions( const std::string& extension_id, const Action::ActionType type, const std::string& api_name, const std::string& page_url, const std::string& arg_url, const int daysAgo, const base::Callback <void(scoped_ptr<std::vector<scoped_refptr<Action> > >)>& callback) argument
[all...]

Completed in 5166 milliseconds