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

Unified Diff: net/http/http_auth_gssapi_posix.h

Issue 683963002: Replace a few typeofs with delctype. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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
« no previous file with comments | « chrome/browser/password_manager/native_backend_gnome_x.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 4091ba356b963e622355ae6177540d6b7310f01e..58f17a6cfc9171d8fa0e9c957d9ce6ebb6c55a79 100644
--- a/net/http/http_auth_gssapi_posix.h
+++ b/net/http/http_auth_gssapi_posix.h
@@ -164,15 +164,15 @@ class NET_EXPORT_PRIVATE GSSAPISharedLibrary : public GSSAPILibrary {
int* open) override;
private:
- typedef typeof(&gss_import_name) gss_import_name_type;
- typedef typeof(&gss_release_name) gss_release_name_type;
- typedef typeof(&gss_release_buffer) gss_release_buffer_type;
- typedef typeof(&gss_display_name) gss_display_name_type;
- typedef typeof(&gss_display_status) gss_display_status_type;
- typedef typeof(&gss_init_sec_context) gss_init_sec_context_type;
- typedef typeof(&gss_wrap_size_limit) gss_wrap_size_limit_type;
- typedef typeof(&gss_delete_sec_context) gss_delete_sec_context_type;
- typedef typeof(&gss_inquire_context) gss_inquire_context_type;
+ typedef decltype(&gss_import_name) gss_import_name_type;
+ typedef decltype(&gss_release_name) gss_release_name_type;
+ typedef decltype(&gss_release_buffer) gss_release_buffer_type;
+ typedef decltype(&gss_display_name) gss_display_name_type;
+ typedef decltype(&gss_display_status) gss_display_status_type;
+ typedef decltype(&gss_init_sec_context) gss_init_sec_context_type;
+ typedef decltype(&gss_wrap_size_limit) gss_wrap_size_limit_type;
+ typedef decltype(&gss_delete_sec_context) gss_delete_sec_context_type;
+ typedef decltype(&gss_inquire_context) gss_inquire_context_type;
FRIEND_TEST_ALL_PREFIXES(HttpAuthGSSAPIPOSIXTest, GSSAPIStartup);
« no previous file with comments | « chrome/browser/password_manager/native_backend_gnome_x.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698