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

Unified Diff: net/http/http_auth_gssapi_posix.h

Issue 2826273004: Enable loading gssapi library for Chromad. (Closed)
Patch Set: Enable loading gssapi library for Chromad. Created 3 years, 8 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: net/http/http_auth_gssapi_posix.h
diff --git a/net/http/http_auth_gssapi_posix.h b/net/http/http_auth_gssapi_posix.h
index 18cccebf8454fc0f621a48b63d8ad0e34f0ff00c..f861c67c91fead26944dedda02057b60dbf066da 100644
--- a/net/http/http_auth_gssapi_posix.h
+++ b/net/http/http_auth_gssapi_posix.h
@@ -108,7 +108,8 @@ class NET_EXPORT_PRIVATE GSSAPISharedLibrary : public GSSAPILibrary {
public:
// If |gssapi_library_name| is empty, hard-coded default library names are
// used.
- explicit GSSAPISharedLibrary(const std::string& gssapi_library_name);
+ explicit GSSAPISharedLibrary(const std::string& gssapi_library_name,
+ bool allow_gssapi_library_load);
~GSSAPISharedLibrary() override;
// GSSAPILibrary methods:
@@ -186,6 +187,7 @@ class NET_EXPORT_PRIVATE GSSAPISharedLibrary : public GSSAPILibrary {
bool initialized_;
std::string gssapi_library_name_;
+ bool allow_gssapi_library_load_;
// Need some way to invalidate the library.
base::NativeLibrary gssapi_library_;

Powered by Google App Engine
This is Rietveld 408576698