Searched refs:frame_url (Results 1 - 25 of 63) sorted by relevance

123

/external/chromium/chrome/browser/ui/app_modal_dialogs/
H A Dmessage_box_handler.cc27 const GURL& frame_url) {
31 extensions_service->GetExtensionByURL(frame_url);
33 extension = extensions_service->GetExtensionByWebExtent(frame_url);
41 if (!frame_url.has_host()) {
49 string16 base_address = ui::ElideUrl(frame_url.GetOrigin(),
64 const GURL& frame_url,
71 std::wstring title = GetTitle(profile, is_alert, frame_url);
25 GetTitle(Profile* profile, bool is_alert, const GURL& frame_url) argument
62 RunJavascriptMessageBox(Profile* profile, JavaScriptAppModalDialogDelegate* delegate, const GURL& frame_url, int dialog_flags, const std::wstring& message_text, const std::wstring& default_prompt_text, bool display_suppress_checkbox, IPC::Message* reply_msg) argument
H A Dmessage_box_handler.h26 const GURL& frame_url,
/external/chromium_org/chrome/renderer/extensions/
H A Dresource_request_policy.cc70 GURL frame_url = frame->document().url(); local
75 bool is_empty_origin = frame_url.is_empty();
76 // - extensions requesting their own resources (frame_url check is for
78 bool is_own_resource = frame_url.GetOrigin() == extension->url() ||
88 bool is_error_page = frame_url == GURL(content::kUnreachableWebDataURL);
113 GURL frame_url = frame->document().url(); local
114 if (!frame_url.is_empty() &&
115 !frame_url.SchemeIs(extensions::kExtensionScheme)) {
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_cookie_helper.h106 void AddReadCookies(const GURL& frame_url,
121 void AddChangedCookie(const GURL& frame_url,
156 // Adds the |cookie| to the cookie list for the given |frame_url|.
157 void AddCookie(const GURL& frame_url,
H A Dbrowsing_data_cookie_helper.cc126 const GURL& frame_url,
132 AddCookie(frame_url, *add_cookie);
137 const GURL& frame_url,
144 AddCookie(frame_url, *cookie);
220 const GURL& frame_url,
236 // "GetCookiesFor(frame_url.GetOrigin());"
125 AddReadCookies( const GURL& frame_url, const GURL& url, const net::CookieList& cookie_list) argument
136 AddChangedCookie( const GURL& frame_url, const GURL& url, const std::string& cookie_line, const net::CookieOptions& options) argument
219 AddCookie( const GURL& frame_url, const net::CanonicalCookie& cookie) argument
/external/chromium_org/components/autofill/content/browser/
H A Dautocheckout_manager.h69 // yet for the current page. |frame_url| is the page where Autocheckout is
72 virtual void MaybeShowAutocheckoutBubble(const GURL& frame_url,
96 virtual void MaybeShowAutocheckoutDialog(const GURL& frame_url,
107 // Shows the Autocheckout bubble. Must be called on the UI thread. |frame_url|
111 void ShowAutocheckoutBubble(const GURL& frame_url,
H A Dautocheckout_manager_unittest.cc404 const GURL& frame_url,
406 AutocheckoutManager::MaybeShowAutocheckoutBubble(frame_url,
484 GURL frame_url; local
489 frame_url,
593 GURL frame_url; local
601 frame_url,
700 GURL frame_url; local
706 autocheckout_manager_->MaybeShowAutocheckoutBubble(frame_url, bounding_box);
765 GURL frame_url; local
772 autocheckout_manager_->MaybeShowAutocheckoutBubble(frame_url, bounding_bo
918 GURL frame_url; local
[all...]
H A Dautocheckout_manager.cc298 const GURL& frame_url,
308 frame_url,
398 const GURL& frame_url,
413 frame_url, local
427 const GURL& frame_url,
435 frame_url);
297 MaybeShowAutocheckoutBubble( const GURL& frame_url, const gfx::RectF& bounding_box) argument
397 MaybeShowAutocheckoutDialog( const GURL& frame_url, AutocheckoutBubbleState state) argument
426 ShowAutocheckoutBubble( const GURL& frame_url, const gfx::RectF& bounding_box, const std::string& cookies) argument
/external/chromium_org/chrome/browser/ui/views/tab_contents/
H A Drender_view_context_menu_win.cc64 content::Referrer(params_.frame_url.is_empty() ?
65 params_.page_url : params_.frame_url,
/external/chromium/webkit/glue/
H A Dcontext_menu.h70 GURL frame_url; member in struct:ContextMenuParams
H A Dcontext_menu.cc32 frame_url(data.frameURL),
H A Ddom_serializer_unittest.cc91 GURL frame_url(frame_web_url);
104 serialization_finish_status_.find(frame_url.spec());
107 serialization_finish_status_[frame_url.spec()] = false;
109 it = serialization_finish_status_.find(frame_url.spec());
115 serialized_frame_map_[frame_url.spec()] += data.data();
122 bool HasSerializedFrame(const GURL& frame_url) { argument
123 return serialized_frame_map_.find(frame_url.spec()) !=
128 const GURL& frame_url) {
129 return serialized_frame_map_[frame_url.spec()];
193 // Map frame_url t
127 GetSerializedContentForFrame( const GURL& frame_url) argument
[all...]
/external/chromium_org/content/renderer/
H A Dweb_ui_extension.cc89 GURL frame_url = frame->document().url();
93 (frame_url.SchemeIs(chrome::kChromeUIScheme) ||
94 frame_url.SchemeIs(chrome::kDataScheme));
H A Dcontext_menu_params_builder.cc30 params.frame_url = data.frameURL;
H A Ddom_serializer_browsertest.cc182 GURL frame_url(frame_web_url);
195 serialization_finish_status_.find(frame_url.spec());
198 serialization_finish_status_[frame_url.spec()] = false;
200 it = serialization_finish_status_.find(frame_url.spec());
206 serialized_frame_map_[frame_url.spec()] += data.data();
213 bool HasSerializedFrame(const GURL& frame_url) { argument
214 return serialized_frame_map_.find(frame_url.spec()) !=
219 const GURL& frame_url) {
220 return serialized_frame_map_[frame_url.spec()];
765 // Map frame_url t
218 GetSerializedContentForFrame( const GURL& frame_url) argument
[all...]
/external/chromium/chrome/browser/extensions/
H A Dextension_context_menu_browsertest.cc135 const GURL& frame_url) {
141 params.frame_url = frame_url;
185 const GURL& frame_url,
188 CreateMenu(browser(), page_url, link_url, frame_url));
450 GURL frame_url("http://www.google.com");
458 page_url, GURL(), frame_url, std::string("Page item")));
460 page_url, GURL(), frame_url, std::string("Frame item")));
132 CreateMenu(Browser* browser, const GURL& page_url, const GURL& link_url, const GURL& frame_url) argument
183 MenuHasItemWithLabel(const GURL& page_url, const GURL& link_url, const GURL& frame_url, const std::string& label) argument
/external/chromium_org/content/public/common/
H A Dcontext_menu_params.h87 GURL frame_url; member in struct:content::ContextMenuParams
/external/chromium_org/chrome/browser/content_settings/
H A Dtab_specific_content_settings.cc121 const GURL& frame_url,
127 settings->OnCookiesRead(url, frame_url, cookie_list,
137 const GURL& frame_url,
144 settings->OnCookieChanged(url, frame_url, cookie_line, options,
347 const GURL& frame_url,
354 frame_url, url, cookie_list);
358 frame_url, url, cookie_list);
367 const GURL& frame_url,
373 frame_url, url, cookie_line, options);
377 frame_url, ur
118 CookiesRead(int render_process_id, int render_view_id, const GURL& url, const GURL& frame_url, const net::CookieList& cookie_list, bool blocked_by_policy) argument
133 CookieChanged( int render_process_id, int render_view_id, const GURL& url, const GURL& frame_url, const std::string& cookie_line, const net::CookieOptions& options, bool blocked_by_policy) argument
345 OnCookiesRead( const GURL& url, const GURL& frame_url, const net::CookieList& cookie_list, bool blocked_by_policy) argument
365 OnCookieChanged( const GURL& url, const GURL& frame_url, const std::string& cookie_line, const net::CookieOptions& options, bool blocked_by_policy) argument
[all...]
/external/chromium/chrome/common/
H A Dweb_apps.cc156 GURL frame_url = frame->url();
177 frame_url.Resolve(definition_url_string)).is_valid() ||
178 definition_url.GetOrigin() != frame_url.GetOrigin()) {
197 app_info->app_url = frame_url.is_valid() ?
198 frame_url.Resolve(url) : GURL(url);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_context_menu_browsertest.cc115 const GURL& frame_url) {
121 params.frame_url = frame_url;
165 const GURL& frame_url,
168 CreateMenu(browser(), page_url, link_url, frame_url));
587 GURL frame_url("http://www.google.com");
595 page_url, GURL(), frame_url, std::string("Page item")));
597 page_url, GURL(), frame_url, std::string("Frame item")));
112 CreateMenu(Browser* browser, const GURL& page_url, const GURL& link_url, const GURL& frame_url) argument
163 MenuHasItemWithLabel(const GURL& page_url, const GURL& link_url, const GURL& frame_url, const std::string& label) argument
/external/chromium_org/content/public/browser/
H A Dweb_contents_delegate.cc97 const GURL& frame_url,
100 GURL url = GURL(kViewSourceScheme + std::string(":") + frame_url.spec());
96 ViewSourceForFrame(WebContents* source, const GURL& frame_url, const PageState& page_state) argument
/external/chromium_org/extensions/browser/
H A Dextension_error.cc86 const string16& frame_url,
90 url(frame_url),
84 StackFrame(size_t frame_line, size_t frame_column, const string16& frame_url, const string16& frame_function) argument
H A Dextension_error.h83 const base::string16& frame_url,
/external/chromium_org/chrome/browser/tab_contents/
H A Drender_view_context_menu.cc446 const bool in_frame = !params.frame_url.is_empty();
493 return params.frame_url.is_empty() ? params.page_url : params.frame_url;
602 if (!params_.frame_url.is_empty()) {
603 is_devtools = IsDevToolsURL(params_.frame_url);
604 if (!is_devtools && !IsInternalResourcesURL(params_.frame_url)) {
611 DCHECK(params_.frame_url.is_empty());
1374 return params_.frame_url.is_valid();
1546 params_.frame_url.is_empty() ? params_.page_url : params_.frame_url,
[all...]
/external/chromium/chrome/browser/tab_contents/
H A Drender_view_context_menu.cc209 bool in_frame = !params.frame_url.is_empty();
253 return params.frame_url.is_empty() ? params.page_url : params.frame_url;
481 if (!params_.frame_url.is_empty()) {
482 is_devtools = IsDevToolsURL(params_.frame_url);
483 if (!is_devtools && !IsInternalResourcesURL(params_.frame_url)) {
490 DCHECK(params_.frame_url.is_empty());
1006 return params_.frame_url.is_valid();
1222 params_.frame_url.is_empty() ? params_.page_url : params_.frame_url;
[all...]

Completed in 580 milliseconds

123