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

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: - 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
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_message_filter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "chrome/test/ui/ppapi_uitest.h" 5 #include "chrome/test/ui/ppapi_uitest.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_util.h" 8 #include "base/file_util.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/stringprintf.h" 10 #include "base/stringprintf.h"
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual) 793 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreEqual)
794 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual) 794 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_AreHostsEqual)
795 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_Describe) 795 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_Describe)
796 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_ReplacePort) 796 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_ReplacePort)
797 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress) 797 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAnyAddress)
798 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily) 798 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetFamily)
799 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_GetPort) 799 TEST_PPAPI_NACL_VIA_HTTP(MAYBE_NetAddressPrivateUntrusted_GetPort)
800 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress) 800 TEST_PPAPI_NACL_VIA_HTTP(NetAddressPrivateUntrusted_GetAddress)
801 801
802 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_Basic) 802 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_Basic)
803 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_Basic)
803 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_2Monitors) 804 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_2Monitors)
805 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_2Monitors)
806 TEST_PPAPI_IN_PROCESS(NetworkMonitorPrivate_DeleteInCallback)
807 TEST_PPAPI_OUT_OF_PROCESS(NetworkMonitorPrivate_DeleteInCallback)
804 808
805 // PPB_TCPSocket_Private currently isn't supported in-process. 809 // PPB_TCPSocket_Private currently isn't supported in-process.
806 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) { 810 IN_PROC_BROWSER_TEST_F(OutOfProcessPPAPITest, TCPSocketPrivate) {
807 RunTestViaHTTP("TCPSocketPrivate"); 811 RunTestViaHTTP("TCPSocketPrivate");
808 } 812 }
809 813
810 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop) 814 TEST_PPAPI_IN_PROCESS(Flash_SetInstanceAlwaysOnTop)
811 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL) 815 TEST_PPAPI_IN_PROCESS(Flash_GetProxyForURL)
812 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop) 816 TEST_PPAPI_IN_PROCESS(Flash_MessageLoop)
813 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset) 817 TEST_PPAPI_IN_PROCESS(Flash_GetLocalTimeZoneOffset)
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
957 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) 961 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess)
958 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) 962 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray)
959 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) 963 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement)
960 964
961 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics) 965 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_Basics)
962 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit) 966 TEST_PPAPI_IN_PROCESS(FlashMessageLoop_RunWithoutQuit)
963 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics) 967 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_Basics)
964 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit) 968 TEST_PPAPI_OUT_OF_PROCESS(FlashMessageLoop_RunWithoutQuit)
965 969
966 #endif // ADDRESS_SANITIZER 970 #endif // ADDRESS_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/pepper_message_filter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698