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

Side by Side Diff: chrome/test/ui/ppapi_uitest.cc

Issue 9677060: Out-of-process implementation of the PPB_NetworkMonitor_Private interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge Created 8 years, 9 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 #include "base/command_line.h" 5 #include "base/command_line.h"
6 #include "base/file_util.h" 6 #include "base/file_util.h"
7 #include "base/path_service.h" 7 #include "base/path_service.h"
8 #include "base/stringprintf.h" 8 #include "base/stringprintf.h"
9 #include "base/string_util.h" 9 #include "base/string_util.h"
10 #include "base/test/test_timeouts.h" 10 #include "base/test/test_timeouts.h"
(...skipping 781 matching lines...) Expand 10 before | Expand all | Expand 10 after
792 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual) 792 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual)
793 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual) 793 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual)
794 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_Describe) 794 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_Describe)
795 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_ReplacePort) 795 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_ReplacePort)
796 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress) 796 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress)
797 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily) 797 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily)
798 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_GetPort) 798 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_GetPort)
799 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress) 799 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress)
800 800
801 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_Basic) 801 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_Basic)
802 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_Basic)
802 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_2Monitors) 803 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_2Monitors)
804 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_2Monitors)
805 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_DeleteInCallback)
806 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_DeleteInCallback)
803 807
804 // PPB_TCPSocket_Private currently isn't supported in-process. 808 // PPB_TCPSocket_Private currently isn't supported in-process.
805 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { 809 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) {
806 RunTestViaHTTP("TCPSocketPrivate"); 810 RunTestViaHTTP("TCPSocketPrivate");
807 } 811 }
808 812
809 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop) 813 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop)
810 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) 814 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL)
811 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) 815 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop)
812 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) 816 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset)
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
956 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) 960 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess)
957 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) 961 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray)
958 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) 962 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement)
959 963
960 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) 964 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics)
961 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) 965 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit)
962 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) 966 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics)
963 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) 967 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit)
964 968
965 #endif // ADDRESS_SANITIZER 969 #endif // ADDRESS_SANITIZER
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698