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

Side by Side Diff: ppapi/proxy/ppapi_messages.h

Issue 29943003: Remove CanChallengePlatform() and CheckPlatformState(). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove 0.1 usage. Created 7 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Multiply-included message header, no traditional include guard. 5 // Multiply-included message header, no traditional include guard.
6 #include <string> 6 #include <string>
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/basictypes.h" 9 #include "base/basictypes.h"
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
(...skipping 1401 matching lines...) Expand 10 before | Expand all | Expand 10 after
1412 1412
1413 // This message is a reply to HostResolver_Resolve. On success, 1413 // This message is a reply to HostResolver_Resolve. On success,
1414 // |canonical_name| contains the canonical name of the host; |net_address_list| 1414 // |canonical_name| contains the canonical name of the host; |net_address_list|
1415 // is a list of network addresses. On failure, both fields are set to empty. 1415 // is a list of network addresses. On failure, both fields are set to empty.
1416 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_HostResolver_ResolveReply, 1416 IPC_MESSAGE_CONTROL2(PpapiPluginMsg_HostResolver_ResolveReply,
1417 std::string /* canonical_name */, 1417 std::string /* canonical_name */,
1418 std::vector<PP_NetAddress_Private> /* net_address_list */) 1418 std::vector<PP_NetAddress_Private> /* net_address_list */)
1419 1419
1420 // Platform Verification ------------------------------------------------------- 1420 // Platform Verification -------------------------------------------------------
1421 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PlatformVerification_Create) 1421 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PlatformVerification_Create)
1422 IPC_MESSAGE_CONTROL0(PpapiHostMsg_PlatformVerification_CanChallengePlatform)
1423 IPC_MESSAGE_CONTROL1(
1424 PpapiHostMsg_PlatformVerification_CanChallengePlatformReply,
1425 bool /* can_challenge_platform */)
1426 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PlatformVerification_ChallengePlatform, 1422 IPC_MESSAGE_CONTROL2(PpapiHostMsg_PlatformVerification_ChallengePlatform,
1427 std::string /* service_id */, 1423 std::string /* service_id */,
1428 std::vector<uint8_t> /* challenge */) 1424 std::vector<uint8_t> /* challenge */)
1429 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PlatformVerification_ChallengePlatformReply, 1425 IPC_MESSAGE_CONTROL3(PpapiHostMsg_PlatformVerification_ChallengePlatformReply,
1430 std::vector<uint8_t> /* signed_data */, 1426 std::vector<uint8_t> /* signed_data */,
1431 std::vector<uint8_t> /* signed_data_signature */, 1427 std::vector<uint8_t> /* signed_data_signature */,
1432 std::string /* platform_key_certificate */) 1428 std::string /* platform_key_certificate */)
1433 1429
1434 // Printing. 1430 // Printing.
1435 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create) 1431 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Printing_Create)
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after
1960 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission, 1956 IPC_MESSAGE_CONTROL1(PpapiHostMsg_Talk_RequestPermission,
1961 PP_TalkPermission /* permission */) 1957 PP_TalkPermission /* permission */)
1962 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply) 1958 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_RequestPermissionReply)
1963 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting) 1959 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StartRemoting)
1964 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply) 1960 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StartRemotingReply)
1965 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting) 1961 IPC_MESSAGE_CONTROL0(PpapiHostMsg_Talk_StopRemoting)
1966 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply) 1962 IPC_MESSAGE_CONTROL0(PpapiPluginMsg_Talk_StopRemotingReply)
1967 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */) 1963 IPC_MESSAGE_CONTROL1(PpapiPluginMsg_Talk_NotifyEvent, PP_TalkEvent /* event */)
1968 1964
1969 #endif // !defined(OS_NACL) && !defined(NACL_WIN64) 1965 #endif // !defined(OS_NACL) && !defined(NACL_WIN64)
OLDNEW
« no previous file with comments | « ppapi/proxy/platform_verification_private_resource.cc ('k') | ppapi/tests/test_platform_verification_private.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698