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

Unified Diff: chrome/utility/chrome_content_utility_ipc_whitelist.cc

Issue 102993002: Implement Networking Private API VerifyAndEncryptCredentials method (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address codereview comments. Created 6 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/utility/chrome_content_utility_ipc_whitelist.cc
diff --git a/chrome/utility/chrome_content_utility_ipc_whitelist.cc b/chrome/utility/chrome_content_utility_ipc_whitelist.cc
index 5715a9ccbf9e7efb8a5bec0a4fb2f12574554694..8ae3930c354575fa58b7c798d5a5c20278c74379 100644
--- a/chrome/utility/chrome_content_utility_ipc_whitelist.cc
+++ b/chrome/utility/chrome_content_utility_ipc_whitelist.cc
@@ -4,9 +4,15 @@
#include "chrome/utility/chrome_content_utility_ipc_whitelist.h"
+#include "chrome/common/chrome_utility_messages.h"
+
namespace chrome {
-const uint32 kMessageWhitelist[] = {0};
+const uint32 kMessageWhitelist[] = {
+#ifdef OS_WIN
+ ChromeUtilityHostMsg_GetAndEncryptWiFiCredentials::ID,
+#endif // OS_WIN
+ 0};
const size_t kMessageWhitelistSize = arraysize(kMessageWhitelist);
} // namespace chrome

Powered by Google App Engine
This is Rietveld 408576698