HomeSort by relevance Sort by last modified time
    Searched defs:Navigate (Results 1 - 25 of 34) sorted by null

1 2

  /external/chromium_org/chrome/browser/chromeos/login/
merge_session_load_page_unittest.cc 67 void Navigate(const char* url, int page_id) {
94 Navigate(kURL1, 1);
109 Navigate(kURL1, 1);
130 Navigate(kURL2, 2);
  /external/chromium_org/content/public/browser/
render_view_host_observer.cc 29 void RenderViewHostObserver::Navigate(const GURL& url) {
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
inspector_page.py 66 def Navigate(self, url, script_to_evaluate_on_commit=None, timeout=60):
83 # Navigate the page. However, there seems to be a bug in chrome devtools
90 'method': 'Page.navigate',
inspector_backend.py 178 def Navigate(self, url, script_to_evaluate_on_commit, timeout):
179 self._page.Navigate(url, script_to_evaluate_on_commit, timeout)
  /external/chromium_org/tools/telemetry/telemetry/core/
tab.py 14 tab.Navigate('http://www.google.com/')
85 def Navigate(self, url, script_to_evaluate_on_commit=None,
93 self._inspector_backend.Navigate(url, script_to_evaluate_on_commit, timeout)
  /external/chromium/chrome/browser/sidebar/
sidebar_container.cc 85 Navigate(extension->sidebar_defaults()->default_page());
97 void SidebarContainer::Navigate(const GURL& url) {
  /external/chromium_org/content/browser/
database_browsertest.cc 37 void Navigate(Shell* shell) {
77 Navigate(shell());
87 Navigate(shell());
101 Navigate(shell());
116 Navigate(shell());
128 Navigate(shell());
164 Navigate(shell());
180 Navigate(shell());
185 Navigate(otr);
196 Navigate(otr)
    [all...]
  /external/chromium_org/ppapi/cpp/private/
flash.cc 160 int32_t Flash::Navigate(const URLRequestInfo& request_info,
165 return get_interface<PPB_Flash_13_0>()->Navigate(
170 if (flash_12_combined_interface.Navigate) {
171 return flash_12_combined_interface.Navigate(
  /external/chromium/chrome/browser/
background_contents_service_unittest.cc 73 virtual void Navigate(GURL url) {
139 contents->Navigate(url);
143 // Navigate the contents to a new url, should not change url.
144 contents->Navigate(url2);
160 contents->Navigate(url);
180 contents->Navigate(url);
193 contents->Navigate(url);
218 // Navigate the contents, then make sure the one associated with the extension
222 contents->Navigate(url);
224 contents2->Navigate(url2)
    [all...]
  /external/chromium/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 65 void Navigate(const char* url, int page_id) {
92 Navigate(kURL1, 1);
113 Navigate(kURL2, 2);
120 Navigate(kURL1, 1);
  /external/chromium_org/chrome/browser/background/
background_contents_service_unittest.cc 71 virtual void Navigate(GURL url) {
138 contents->Navigate(url);
142 // Navigate the contents to a new url, should not change url.
143 contents->Navigate(url2);
161 contents->Navigate(url);
183 contents->Navigate(url);
196 contents->Navigate(url);
222 // Navigate the contents, then make sure the one associated with the extension
226 contents->Navigate(url);
228 contents2->Navigate(url2)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/offline/
offline_load_page_unittest.cc 64 void Navigate(const char* url, int page_id) {
94 Navigate(kURL1, 1);
116 Navigate(kURL2, 2);
123 Navigate(kURL1, 1);
  /external/chromium_org/chrome/browser/renderer_host/
chrome_render_view_host_observer.cc 81 void ChromeRenderViewHostObserver::Navigate(const GURL& url) {
  /external/chromium_org/chrome/browser/ui/autofill/
generated_credit_card_bubble_controller_unittest.cc 111 void Navigate() {
200 Navigate();
  /external/chromium/chrome/browser/ui/
browser_navigator.cc 261 // Obtain the profile used by the code that originated the Navigate() request.
299 // This class manages the lifetime of a TabContents created by the Navigate()
300 // function. When Navigate() creates a TabContents for a URL, an instance of
371 void Navigate(NavigateParams* params) {
378 // Navigate() must not return early after this point.
  /external/chromium_org/chrome/test/reliability/
automated_ui_test_base.cc 143 bool AutomatedUITestBase::Navigate(const GURL& url) {
  /external/chromium_org/chrome_frame/test/
chrome_frame_automation_mock.h 66 // Navigate external tab to the specified url through automation
67 bool Navigate(const std::string& url) {
77 // Navigate the external to a 'file://' url for unit test files
86 return Navigate(WideToUTF8(file_url));
90 return Navigate(WideToUTF8(mock_server_.Resolve(relative_url.c_str())));
  /external/chromium_org/content/public/renderer/
render_view_observer.h 94 virtual void Navigate(const GURL& url) {}
  /external/chromium_org/ppapi/proxy/
flash_resource.cc 232 int32_t FlashResource::Navigate(PP_Instance instance,
  /external/chromium_org/ppapi/thunk/
ppb_flash_thunk.cc 56 int32_t Navigate(PP_Resource request_id,
72 return enter.functions()->Navigate(instance, request_id, target,
168 &Navigate,
186 &Navigate,
205 &Navigate,
225 &Navigate,
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc 102 void Navigate(const char* url, int page_id) {
226 Navigate(kBadURL, 1);
242 // Navigate somewhere.
243 Navigate(kGoogleURL, 1);
245 // Navigate somewhere else.
246 Navigate(kGoodURL, 2);
276 // Navigate somewhere.
277 Navigate(kGoodURL, 1);
308 // Navigate somewhere.
309 Navigate(kGoogleURL, 1)
    [all...]
  /external/chromium_org/android_webview/renderer/
aw_render_view_ext.cc 260 void AwRenderViewExt::Navigate(const GURL& url) {
261 // Navigate is called only on NEW navigations, so WebImageCache won't be freed
266 // RenderViewObserver. Thus, clearing decoding image cache on Navigate, seems
  /external/chromium_org/chrome/browser/safe_browsing/
safe_browsing_blocking_page_unittest.cc 149 void Navigate(const char* url, int page_id) {
293 Navigate(kBadURL, 1);
310 // Navigate somewhere.
311 Navigate(kGoogleURL, 1);
313 // Navigate somewhere else.
314 Navigate(kGoodURL, 2);
345 // Navigate somewhere.
346 Navigate(kGoodURL, 1);
378 // Navigate somewhere.
379 Navigate(kGoogleURL, 1)
    [all...]
  /external/chromium_org/chrome/browser/ui/
browser_navigator.cc 234 // Obtain the profile used by the code that originated the Navigate() request.
291 // Navigate() function. When Navigate() creates a WebContents for a URL,
474 void Navigate(NavigateParams* params) {
500 // Navigate() must not return early after this point.
592 // should not actually navigate.
  /external/chromium_org/ppapi/c/private/
ppb_flash.h 173 * Navigate to the URL given by the given URLRequestInfo. (This supports GETs,
176 int32_t (*Navigate)(PP_Resource request_info,
255 int32_t (*Navigate)(PP_Resource request_info,
286 int32_t (*Navigate)(PP_Resource request_info,
320 int32_t (*Navigate)(PP_Resource request_info,

Completed in 816 milliseconds

1 2