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

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: extension 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..b897787dafd51dc0e428ffca984edd535d6a8b7a 100644
--- a/chrome/browser/extensions/extension_apitest.cc
+++ b/chrome/browser/extensions/extension_apitest.cc
@@ -185,6 +185,13 @@ bool ExtensionApiTest::RunExtensionTestAllowOldManifestVersion(
kFlagEnableFileAccess | kFlagAllowOldManifestVersions);
}
+bool ExtensionApiTest::RunExtensionTestWithArg(
+ const std::string& extension_name,
+ const char* custom_arg) {
+ return RunExtensionTestImpl(extension_name, std::string(), custom_arg,
+ kFlagEnableFileAccess);
+}
+
bool ExtensionApiTest::RunComponentExtensionTest(
const std::string& extension_name) {
return RunExtensionTestImpl(extension_name,

Powered by Google App Engine
This is Rietveld 408576698