HomeSort by relevance Sort by last modified time
    Searched refs:new_url (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /external/chromium_org/chrome/browser/sync/test/integration/
single_client_typed_urls_sync_test.cc 36 GURL new_url(kSanityHistoryUrl);
37 AddUrlToHistory(0, new_url);
41 ASSERT_EQ(new_url, urls[0].url());
54 GURL new_url(kSanityHistoryUrl);
56 AddUrlToHistory(0, new_url);
57 AddUrlToHistory(0, new_url);
61 ASSERT_EQ(new_url, urls[0].url());
74 GURL new_url(kSanityHistoryUrl);
76 AddUrlToHistory(0, new_url);
77 AddUrlToHistory(0, new_url);
    [all...]
multiple_client_typed_urls_sync_test.cc 38 GURL new_url(kHistoryUrl);
39 AddUrlToHistory(0, new_url);
42 ASSERT_EQ(new_url, urls[0].url());
59 GURL new_url(unique_url);
60 AddUrlToHistory(i, new_url);
64 ASSERT_EQ(new_url, urls[0].url());
two_client_typed_urls_sync_test.cc 82 GURL new_url(kHistoryUrl);
83 AddUrlToHistory(0, new_url);
86 ASSERT_EQ(new_url, urls[0].url());
98 GURL new_url(kHistoryUrl);
102 new_url,
108 ASSERT_EQ(new_url, urls[0].url());
130 GURL new_url(kHistoryUrl);
134 new_url,
140 ASSERT_EQ(new_url, urls[0].url());
150 AddUrlToHistory(0, new_url);
    [all...]
  /external/chromium_org/chrome/common/extensions/
extension_process_policy.h 20 // Check if navigating a toplevel page from |old_url| to |new_url| would cross
29 const GURL& new_url,
extension_process_policy.cc 27 const GURL& new_url,
34 new_url);
  /external/chromium_org/content/public/browser/
resource_request_details.h 52 const GURL& new_url);
56 GURL new_url; member in struct:content::ResourceRedirectDetails
resource_throttle.h 26 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) {}
resource_request_details.cc 51 const GURL& new_url)
53 new_url(new_url) {
  /external/chromium_org/chrome/browser/prerender/
prerender_resource_throttle.h 35 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
64 const GURL& new_url);
prerender_resource_throttle.cc 48 void PrerenderResourceThrottle::WillRedirectRequest(const GURL& new_url,
61 info->GetChildID(), info->GetRenderFrameID(), new_url));
120 const GURL& new_url) {
126 if (!PrerenderManager::DoesURLHaveValidScheme(new_url)) {
128 ReportUnsupportedPrerenderScheme(new_url);
  /external/chromium_org/chrome/browser/ui/bookmarks/
bookmark_editor.cc 16 const GURL& new_url) {
27 if (details.type == BookmarkEditor::EditDetails::NEW_URL) {
28 node = model->AddURL(parent, insert_index, new_title, new_url);
56 case NEW_URL:
72 case EditDetails::NEW_URL:
103 EditDetails details(NEW_URL);
128 const GURL& new_url) {
129 if (details.type == EditDetails::NEW_URL ||
131 return CreateNewNode(model, parent, details, new_title, new_url);
138 model->SetURL(node, new_url);
    [all...]
bookmark_editor.h 62 NEW_URL,
78 // If type == NEW_URL or type == NEW_FOLDER this gives the initial parent
82 // If type == NEW_URL or type == NEW_FOLDER this gives the index to insert
86 // If type == NEW_URL this gives the URL/title.
115 const GURL& new_url);
126 const GURL& new_url);
  /external/chromium_org/content/browser/loader/
resource_loader_delegate.h 29 const GURL& new_url) = 0;
throttling_resource_handler.cc 34 bool ThrottlingResourceHandler::OnRequestRedirected(const GURL& new_url,
42 throttles_[index]->WillRedirectRequest(new_url, defer);
49 deferred_url_ = new_url;
57 return next_handler_->OnRequestRedirected(new_url, response, defer);
202 GURL new_url = deferred_url_; local
208 if (!OnRequestRedirected(new_url, response.get(), &defer)) {
sync_resource_handler.cc 48 const GURL& new_url,
53 new_url, request(), GetRequestInfo()->GetContext(), response);
60 if (new_url.GetOrigin() != result_.final_url.GetOrigin()) {
64 result_.final_url = new_url;
cross_site_resource_handler.h 32 virtual bool OnRequestRedirected(const GURL& new_url,
  /external/chromium_org/chrome/browser/download/
download_resource_throttle.h 33 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
download_resource_throttle.cc 36 void DownloadResourceThrottle::WillRedirectRequest(const GURL& new_url,
  /external/chromium_org/chrome/browser/supervised_user/
supervised_user_resource_throttle.h 29 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
supervised_user_resource_throttle.cc 56 void SupervisedUserResourceThrottle::WillRedirectRequest(const GURL& new_url,
58 ShowInterstitialIfNeeded(true, new_url, defer);
  /external/chromium_org/chrome/browser/ui/
navigation_correction_tab_observer.h 39 void OnGoogleURLUpdated(GURL old_url, GURL new_url);
  /external/chromium_org/content/public/child/
request_peer.h 38 // information about the redirect, and new_url is the URL that will be loaded
41 virtual bool OnReceivedRedirect(const GURL& new_url,
  /external/chromium_org/chrome/browser/sync/glue/
typed_url_model_associator.cc 255 // Initialize fields in |new_url| to the same values as the fields in
260 history::URLRow new_url(*ix);
264 MergeUrls(typed_url, *ix, &visits, &new_url, &added_visits);
288 DCHECK_EQ(new_url.last_visit().ToInternalValue(),
290 WriteToSyncNode(new_url, visits, &write_node);
294 std::pair<history::URLID, history::URLRow>(ix->id(), new_url));
412 history::URLRow new_url(GURL(typed_url.url()));
414 bool existing_url = history_backend_->GetURL(new_url.url(), &new_url);
418 if (!FixupURLAndGetVisits(&new_url, &existing_visits))
    [all...]
  /external/chromium_org/apps/shell/renderer/
shell_content_renderer_client.h 39 GURL* new_url) OVERRIDE;
  /external/chromium_org/components/navigation_interception/
intercept_navigation_resource_throttle.h 44 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;

Completed in 323 milliseconds

1 2 3 4 5 6