/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/ |
InterstitialPageDelegateAndroid.java | 35 * Called when "proceed" is triggered on the interstitial. 42 * Called when "dont' proceed" is triggered on the interstitial. 63 * Notifies the native interstitial to proceed. 65 protected void proceed() { method in class:InterstitialPageDelegateAndroid 70 * Notifies the native interstitial to not proceed.
|
/external/chromium_org/chrome/browser/chromeos/offline/ |
offline_load_page_unittest.cc | 35 virtual void NotifyBlockingPageComplete(bool proceed) OVERRIDE; 57 void OnBlockingPageComplete(bool proceed) { 58 if (proceed) 88 void TestOfflineLoadPage::NotifyBlockingPageComplete(bool proceed) { 89 test_page_->OnBlockingPageComplete(proceed); 106 // Simulate the user clicking "proceed". 107 interstitial->Proceed(); 133 // Simulate the user clicking "don't proceed". 139 // We did not proceed, the pending entry should be gone.
|
offline_load_page.h | 39 // Passed a boolean indicating whether or not it is OK to proceed with the 41 typedef base::Callback<void(bool /*proceed*/)> CompletionCallback; 54 virtual void NotifyBlockingPageComplete(bool proceed); 73 // True if the proceed is chosen.
|
/frameworks/testing/uiautomator/library/testrunner-src/com/android/uiautomator/core/ |
UiAutomationShellWrapper.java | 89 /* do nothing and let activity proceed normally */ 95 /* do nothing and let activity proceed normally */ 102 /* do nothing and let activity proceed normally */ 109 /* do nothing and let activity proceed normally */ 116 /* do nothing and let activity proceed normally */ 123 /* do nothing and let system proceed normally */
|
/external/chromium_org/chrome/browser/resources/ssl/ |
ssl_errors_common.js | 22 // This allows errors to be skippped by typing "proceed" into the page. 24 var sequence = 'proceed';
|
roadblock.js | 18 $('proceed-button').hidden = false; 19 $('proceed-button').addEventListener('click', function() {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowSslErrorHandler.java | 24 public void proceed() { method in class:ShadowSslErrorHandler
|
/frameworks/base/core/java/android/webkit/ |
SslErrorHandler.java | 25 * either {@link #proceed} or {@link #cancel} to set the WebView's response 36 * Proceed with the SSL certificate. 38 public void proceed() {} method in class:SslErrorHandler
|
HttpAuthHandler.java | 25 * call either {@link #proceed} or {@link #cancel} to set the WebView's 56 * Instructs the WebView to proceed with the authentication with the given 60 public void proceed(String username, String password) { method in class:HttpAuthHandler
|
/external/chromium/chrome/browser/safe_browsing/ |
safe_browsing_blocking_page_unittest.cc | 95 virtual void OnBlockingPageComplete(bool proceed) { 96 if (proceed) 142 sb_interstitial->Proceed(); 143 // Proceed() posts a task to update the SafeBrowsingService::Client. 191 // Simulate the user clicking "don't proceed". 198 // We did not proceed, the pending entry should be gone. 220 // Simulate the user clicking "proceed". 254 // Simulate the user clicking "don't proceed". 259 // We did not proceed, we should be back to the first page, the 2nd one should 285 // Simulate the user clicking "proceed" [all...] |
safe_browsing_blocking_page.h | 25 // decides to proceed in the first interstitial, we display all queued unsafe 56 // to proceed on the currently showing interstitial. 70 virtual void Proceed(); 87 PROCEED, 107 // SBInterstitial[Phishing|Malware|Multiple][Show|Proceed|DontProceed]. 125 // Notifies the SafeBrowsingService on the IO thread whether to proceed or not 129 bool proceed);
|
/external/chromium/chrome/browser/chromeos/offline/ |
offline_load_page.h | 33 // Called when a user selected to proceed or not to proceed 35 virtual void OnBlockingPageComplete(bool proceed) = 0; 60 virtual void Proceed(); 83 // True if the proceed is chosen.
|
offline_load_page_unittest.cc | 58 virtual void OnBlockingPageComplete(bool proceed) { 59 if (proceed) 103 // Simulate the user clicking "proceed". 104 interstitial->Proceed(); 129 // Simulate the user clicking "don't proceed". 135 // We did not proceed, the pending entry should be gone.
|
/external/chromium_org/v8/test/mjsunit/regress/ |
regress-crbug-3184.js | 39 this.$$$parentMethodStore$$$ = this.$proceed; 40 this.$proceed = function() { return _method.apply(this, arguments); }; 44 this.$proceed = this.$$$parentMethodStore$$$; 45 if (this.$proceed == undefined) delete this.$proceed; 66 return this.$proceed();
|
/external/v8/test/mjsunit/regress/ |
regress-crbug-3184.js | 39 this.$$$parentMethodStore$$$ = this.$proceed; 40 this.$proceed = function() { return _method.apply(this, arguments); }; 44 this.$proceed = this.$$$parentMethodStore$$$; 45 if (this.$proceed == undefined) delete this.$proceed; 66 return this.$proceed();
|
/external/chromium_org/chrome/browser/resources/safe_browsing/ |
malware_block_v2.js | 43 * The 'OneStep' conditions don't hide the proceed button. 62 $('proceed-span').hidden = templateData.proceedDisabled; 67 $('proceed').onclick = function(e) { 68 sendCommand('proceed');
|
malware_block_v2.html | 46 <span id="proceed-span" class="advanced" hidden> 47 <a id="proceed" href="#" i18n-content="proceed"></a>
|
/external/chromium_org/chrome/browser/sync/glue/ |
data_type_encryption_handler.h | 19 // Returns true if a passphrase is required for encryption to proceed, false
|
/external/chromium_org/chrome/browser/safe_browsing/ |
safe_browsing_blocking_page_unittest.cc | 144 void OnBlockingPageComplete(bool proceed) { 145 if (proceed) 196 sb_interstitial->interstitial_page_->Proceed(); 197 // Proceed() posts a task to update the SafeBrowsingService::Client. 258 // Simulate the user clicking "don't proceed". 265 // We did not proceed, the pending entry should be gone. 289 // Simulate the user clicking "proceed". 324 // Simulate the user clicking "don't proceed". 329 // We did not proceed, we should be back to the first page, the 2nd one should 356 // Simulate the user clicking "proceed" [all...] |
safe_browsing_blocking_page_test.cc | 7 // these urls, and sends "goback" or "proceed" commands and verifies 432 interstitial_page->Proceed(); 510 // Simulate the user clicking "proceed", there should be no crash. Since 511 // clicking proceed may do nothing (see comment in MalwareRedirectCanceled 515 SendCommand("\"proceed\""); 612 // If the redirect was from subresource but canceled, "proceed" will continue 621 // Clicking proceed won't do anything if the main request is cancelled 641 EXPECT_EQ(HIDDEN, GetVisibility("proceed")); 645 EXPECT_EQ(VISIBLE, GetVisibility("proceed")); 657 EXPECT_TRUE(ClickAndWaitForDetach("proceed")); [all...] |
/external/chromium/chrome/browser/ssl/ |
ssl_blocking_page.h | 44 ERROR_OVERRIDABLE, // The interstitial page has a "Proceed anyway" button. 46 // proceed to the site. 65 virtual void Proceed();
|
/external/chromium_org/chrome/browser/resources/chromeos/login/ |
screen_password_changed.css | 64 #password-changed-proceed-anyway-warning { 70 #password-changed.migrate #password-changed-proceed-anyway-warning, 71 #password-changed.migrate #password-changed-proceed-button {
|
/external/chromium_org/content/public/browser/ |
interstitial_page.h | 65 // Delegates should call this method when the user has chosen NOT to proceed 71 // Delegates should call this method when the user has chosen to proceed to 74 virtual void Proceed() = 0;
|
/external/chromium/chrome/browser/extensions/ |
extension_install_ui.h | 56 // proceed. This is declared virtual for testing. 58 // We *MUST* eventually call either Proceed() or Abort() on |delegate|. 64 // We *MUST* eventually call either Proceed() or Abort() on |delegate|. 118 // The delegate we will call Proceed/Abort on after confirmation UI.
|
/external/chromium_org/android_webview/browser/ |
aw_login_delegate.h | 27 virtual void Proceed(const string16& user, const string16& password);
|