Searched refs:new_url (Results 1 - 25 of 120) sorted by relevance

12345

/external/chromium_org/chrome/browser/sync/test/integration/
H A Dsingle_client_typed_urls_sync_test.cc36 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...]
H A Dmultiple_client_typed_urls_sync_test.cc38 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());
H A Dtwo_client_typed_urls_sync_test.cc82 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/net/url_request/
H A Dredirect_info.h32 GURL new_url; member in struct:net::RedirectInfo
/external/chromium_org/content/public/browser/
H A Dresource_request_details.cc38 const GURL& new_url)
40 new_url(new_url) {
36 ResourceRedirectDetails(const net::URLRequest* request, int cert_id, const GURL& new_url) argument
H A Dresource_request_details.h52 const GURL& new_url);
56 GURL new_url; member in struct:content::ResourceRedirectDetails
H A Dresource_throttle.h27 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) {} argument
/external/chromium_org/chrome/browser/net/
H A Dsafe_search_util.h18 // query parameters are set to active. Sets |new_url| to a copy of the request
20 void ForceGoogleSafeSearch(const net::URLRequest* request, GURL* new_url);
/external/chromium_org/chrome/common/extensions/
H A Dextension_process_policy.h20 // Check if navigating a toplevel page from |old_url| to |new_url| would cross
29 const GURL& new_url,
H A Dextension_process_policy.cc28 const GURL& new_url,
35 new_url);
25 CrossesExtensionProcessBoundary( const ExtensionSet& extensions, const GURL& old_url, const GURL& new_url, bool should_consider_workaround) argument
/external/chromium_org/chrome/browser/ui/bookmarks/
H A Dbookmark_editor.cc16 const GURL& new_url) {
28 node = model->AddURL(parent, insert_index, new_title, new_url);
128 const GURL& new_url) {
131 return CreateNewNode(model, parent, details, new_title, new_url);
138 model->SetURL(node, new_url);
150 const GURL& new_url) {
153 return CreateNewNode(model, new_parent, details, new_title, new_url);
162 model->SetURL(node, new_url);
12 CreateNewNode(BookmarkModel* model, const BookmarkNode* parent, const BookmarkEditor::EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
123 ApplyEditsWithNoFolderChange( BookmarkModel* model, const BookmarkNode* parent, const EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
145 ApplyEditsWithPossibleFolderChange( BookmarkModel* model, const BookmarkNode* new_parent, const EditDetails& details, const base::string16& new_title, const GURL& new_url) argument
H A Dbookmark_editor.h115 const GURL& new_url);
126 const GURL& new_url);
/external/chromium_org/chrome/browser/download/
H A Ddownload_resource_throttle.h33 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
H A Ddownload_resource_throttle.cc36 void DownloadResourceThrottle::WillRedirectRequest(const GURL& new_url, argument
/external/chromium_org/chrome/browser/supervised_user/
H A Dsupervised_user_resource_throttle.h29 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
H A Dsupervised_user_resource_throttle.cc56 void SupervisedUserResourceThrottle::WillRedirectRequest(const GURL& new_url, argument
58 ShowInterstitialIfNeeded(true, new_url, defer);
/external/chromium_org/chrome/browser/sync/glue/
H A Dtyped_url_model_associator.cc255 // 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);
293 DCHECK_EQ(ix->id(), new_url.id());
294 updated_urls.push_back(new_url);
412 history::URLRow new_url(GURL(typed_url.url()));
414 bool existing_url = history_backend_->GetURL(new_url.url(), &new_url);
557 MergeUrls( const sync_pb::TypedUrlSpecifics& node, const history::URLRow& url, history::VisitVector* visits, history::URLRow* new_url, std::vector<history::VisitInfo>* new_visits) argument
771 DiffVisits( const history::VisitVector& old_visits, const sync_pb::TypedUrlSpecifics& new_url, std::vector<history::VisitInfo>* new_visits, history::VisitVector* removed_visits) argument
820 UpdateURLRowFromTypedUrlSpecifics( const sync_pb::TypedUrlSpecifics& typed_url, history::URLRow* new_url) argument
[all...]
/external/chromium_org/content/browser/loader/
H A Dresource_loader_delegate.h29 const GURL& new_url) = 0;
H A Dsync_resource_handler.cc54 redirect_info.new_url, request(), GetRequestInfo()->GetContext(),
62 if (redirect_info.new_url.GetOrigin() != result_.final_url.GetOrigin()) {
66 result_.final_url = redirect_info.new_url;
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_resource_throttle.h35 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
64 const GURL& new_url);
H A Dprerender_resource_throttle.cc50 void PrerenderResourceThrottle::WillRedirectRequest(const GURL& new_url, argument
63 info->GetChildID(), info->GetRenderFrameID(), new_url));
122 const GURL& new_url) {
128 if (!PrerenderManager::DoesURLHaveValidScheme(new_url)) {
130 ReportUnsupportedPrerenderScheme(new_url);
115 WillRedirectRequestOnUI( const base::WeakPtr<PrerenderResourceThrottle>& throttle, const std::string& follow_only_when_prerender_shown_header, ResourceType resource_type, bool async, int render_process_id, int render_frame_id, const GURL& new_url) argument
/external/chromium_org/components/navigation_interception/
H A Dintercept_navigation_resource_throttle.h44 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
/external/chromium_org/chrome/browser/component_updater/
H A Dcomponent_updater_resource_throttle.cc35 virtual void WillRedirectRequest(const GURL& new_url, bool* defer) OVERRIDE;
66 void CUResourceThrottle::WillRedirectRequest(const GURL& new_url, bool* defer) { argument
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_content_browser_client_extensions_part.h41 const GURL& new_url);
45 const GURL& new_url);
/external/chromium_org/extensions/browser/api/web_request/
H A Dweb_request_api_helpers.h148 GURL new_url; member in struct:extension_web_request_api_helpers::EventResponseDelta
210 const GURL& new_url);
221 const GURL& new_url,
243 // Stores in |*new_url| the redirect request of the extension with highest
248 GURL* new_url,
251 // Stores in |*new_url| the redirect request of the extension with highest
256 GURL* new_url,

Completed in 430 milliseconds

12345