Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4169)

Unified Diff: chrome/browser/extensions/extension_apitest.cc

Issue 859213006: Cancel client auth requests when not promptable. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@client-auth-cancel-1
Patch Set: fix test Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/extensions/extension_apitest.cc
diff --git a/chrome/browser/extensions/extension_apitest.cc b/chrome/browser/extensions/extension_apitest.cc
index a2b923e4d7efb4425b84950cb0e919614ce162f4..43f9af0da74281a315df9629b41b4d91014c369b 100644
--- a/chrome/browser/extensions/extension_apitest.cc
+++ b/chrome/browser/extensions/extension_apitest.cc
@@ -222,6 +222,13 @@ bool ExtensionApiTest::RunExtensionSubtest(const std::string& extension_name,
#endif
}
+bool ExtensionApiTest::RunExtensionSubtestWithArg(
+ const std::string& extension_name,
+ const std::string& page_url,
+ const char* custom_arg) {
+ return RunExtensionTestImpl(extension_name, page_url, custom_arg,
+ kFlagEnableFileAccess);
+}
bool ExtensionApiTest::RunPageTest(const std::string& page_url) {
return RunExtensionSubtest(std::string(), page_url);

Powered by Google App Engine
This is Rietveld 408576698