HomeSort by relevance Sort by last modified time
    Searched refs:arg_url (Results 1 - 18 of 18) sorted by null

  /external/chromium_org/chrome/browser/extensions/activity_log/
fullstream_ui_policy.h 36 const std::string& arg_url,
104 const std::string& arg_url,
activity_actions.cc 71 clone->set_arg_url(arg_url());
93 void Action::set_arg_url(const GURL& arg_url) {
94 arg_url_ = arg_url;
121 return (arg_incognito() ? constants::kIncognitoUrl : "") + arg_url().spec();
176 if (arg_url().is_valid())
177 result->arg_url.reset(new std::string(SerializeArgUrl()));
278 result += " ARG_URL=(incognito)" + arg_url_.spec();
280 result += " ARG_URL=" + arg_url_.spec();
331 if (lhs->arg_url().spec() != rhs->arg_url().spec()
    [all...]
counting_policy.h 35 const std::string& arg_url,
88 const std::string& arg_url,
activity_log.cc 63 // arguments that should be extracted into the arg_url field of an Action.
71 // into arg_url.
215 // Any extracted URL is stored into the arg_url field of the action, and the
216 // URL in the argument list is replaced with the marker value "<arg_url>". For
217 // APIs that take a list of tab IDs, extracts the first valid URL into arg_url
232 // Do not overwrite an existing arg_url value in the Action, so that callers
233 // have the option of doing custom arg_url extraction.
234 if (action->arg_url().is_valid())
237 GURL arg_url;
247 ResolveUrl(action->page_url(), url_string, &arg_url)) {
    [all...]
activity_log_policy.cc 100 if (action->page_url().is_valid() || action->arg_url().is_valid()) {
109 if (action->arg_url().is_valid())
110 action->set_arg_url(action->arg_url().ReplaceComponents(url_sanitizer));
activity_actions.h 88 const GURL& arg_url() const { return arg_url_; } function in class:extensions::Action
89 void set_arg_url(const GURL& arg_url);
fullstream_ui_policy.cc 39 "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 FROM %s %s %s ORDER BY time DESC LIMIT 300",
178 if (!arg_url.empty())
179 query.BindString(++i, arg_url + "%");
237 "UPDATE %s SET page_url=NULL,page_title=NULL,arg_url=NULL",
271 sql_str = base::StringPrintf("UPDATE %s SET arg_url=NULL WHERE arg_url=?"
    [all...]
activity_log_policy_unittest.cc 37 ASSERT_EQ("http://www.youtube.com/", action->arg_url().spec());
activity_log_unittest.cc 122 ASSERT_EQ("http://api.google.com/", action->arg_url().spec());
136 ASSERT_EQ("http://www.google.com/api/", action->arg_url().spec());
142 ASSERT_FALSE(action->arg_url().is_valid());
148 ASSERT_EQ("http://www.google.co.uk/", action->arg_url().spec());
247 // Submit a DOM API call which should have its URL extracted into the arg_url
counting_policy.cc 110 " x6.value AS arg_url,\n"
420 const std::string& arg_url,
450 if (!arg_url.empty()) {
451 where_str += where_next + "arg_url LIKE ?";
459 "page_title, arg_url, other, count FROM %s %s %s ORDER BY count DESC,"
474 if (!arg_url.empty())
475 query.BindString(++i, arg_url + "%");
571 // Remove any that match the arg_url.
676 const std::string& arg_url,
689 arg_url,
    [all...]
activity_log_policy.h 175 const std::string& arg_url,
activity_log.h 82 const std::string& arg_url,
uma_policy.cc 65 if (!action->page_url().is_valid() && !action->arg_url().is_valid())
75 url = CleanURL(action->arg_url());
fullstream_ui_policy_unittest.cc 84 const std::string& arg_url,
95 arg_url,
counting_policy_unittest.cc 93 const std::string& arg_url,
104 arg_url,
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/activity_log_private/
activity_log_private_api.cc 134 std::string arg_url = local
135 filter->arg_url.get() ? *filter->arg_url : std::string();
148 arg_url,
  /external/chromium/chrome/browser/history/
history_types.cc 347 const GURL& arg_url,
356 : url(arg_url),
history_types.h 563 HistoryAddPageArgs(const GURL& arg_url,

Completed in 336 milliseconds