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

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

Issue 9174020: PPAPI URLRequestInfo test: port NaCl version to ppapi_tests. Fix Var and Resource leaks. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | ppapi/native_client/tests/ppapi_browser/ppb_url_request_info/nacl.scons » ('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 "base/file_util.h" 5 #include "base/file_util.h"
6 #include "base/path_service.h" 6 #include "base/path_service.h"
7 #include "base/test/test_timeouts.h" 7 #include "base/test/test_timeouts.h"
8 #include "build/build_config.h" 8 #include "build/build_config.h"
9 #include "content/public/common/content_switches.h" 9 #include "content/public/common/content_switches.h"
10 #include "content/common/pepper_plugin_registry.h" 10 #include "content/common/pepper_plugin_registry.h"
(...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after
462 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_StreamToFile) 462 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_StreamToFile)
463 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedSameOriginRestriction) 463 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedSameOriginRestriction)
464 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedCrossOriginRequest) 464 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedCrossOriginRequest)
465 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedJavascriptURLRestriction) 465 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedJavascriptURLRestriction)
466 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedHttpRestriction) 466 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntrustedHttpRestriction)
467 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_FollowURLRedirect) 467 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_FollowURLRedirect)
468 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_AuditURLRedirect) 468 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_AuditURLRedirect)
469 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_AbortCalls) 469 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_AbortCalls)
470 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntendedLoad) 470 TEST_PPAPI_NACL_VIA_HTTP(URLLoader_UntendedLoad)
471 471
472 // URLRequestInfo tests.
473 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLRequest_CreateAndIsURLRequestInfo)
474 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(URLRequest_CreateAndIsURLRequestInfo)
475 TEST_PPAPI_NACL_VIA_HTTP(URLRequest_CreateAndIsURLRequestInfo)
476 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLRequest_SetProperty)
477 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(URLRequest_SetProperty)
478 TEST_PPAPI_NACL_VIA_HTTP(URLRequest_SetProperty)
479 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLRequest_AppendDataToBody)
480 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(URLRequest_AppendDataToBody)
481 TEST_PPAPI_NACL_VIA_HTTP(URLRequest_AppendDataToBody)
482 TEST_PPAPI_IN_PROCESS_VIA_HTTP(URLRequest_Stress)
483 TEST_PPAPI_OUT_OF_PROCESS_VIA_HTTP(URLRequest_Stress)
484 TEST_PPAPI_NACL_VIA_HTTP(URLRequest_Stress)
485
472 TEST_PPAPI_IN_PROCESS(PaintAggregator) 486 TEST_PPAPI_IN_PROCESS(PaintAggregator)
473 TEST_PPAPI_OUT_OF_PROCESS(PaintAggregator) 487 TEST_PPAPI_OUT_OF_PROCESS(PaintAggregator)
474 TEST_PPAPI_NACL_VIA_HTTP(PaintAggregator) 488 TEST_PPAPI_NACL_VIA_HTTP(PaintAggregator)
475 489
476 TEST_PPAPI_IN_PROCESS(Scrollbar) 490 TEST_PPAPI_IN_PROCESS(Scrollbar)
477 // http://crbug.com/89961 491 // http://crbug.com/89961
478 TEST_F(OutOfProcessPPAPITest, FAILS_Scrollbar) { 492 TEST_F(OutOfProcessPPAPITest, FAILS_Scrollbar) {
479 RunTest("Scrollbar"); 493 RunTest("Scrollbar");
480 } 494 }
481 TEST_PPAPI_NACL_VIA_HTTP(Scrollbar) 495 TEST_PPAPI_NACL_VIA_HTTP(Scrollbar)
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
795 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics) 809 TEST_PPAPI_IN_PROCESS(ResourceArray_Basics)
796 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess) 810 TEST_PPAPI_IN_PROCESS(ResourceArray_OutOfRangeAccess)
797 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray) 811 TEST_PPAPI_IN_PROCESS(ResourceArray_EmptyArray)
798 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement) 812 TEST_PPAPI_IN_PROCESS(ResourceArray_InvalidElement)
799 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics) 813 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_Basics)
800 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess) 814 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_OutOfRangeAccess)
801 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray) 815 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_EmptyArray)
802 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement) 816 TEST_PPAPI_OUT_OF_PROCESS(ResourceArray_InvalidElement)
803 817
804 #endif // ADDRESS_SANITIZER 818 #endif // ADDRESS_SANITIZER
OLDNEW
« no previous file with comments | « no previous file | ppapi/native_client/tests/ppapi_browser/ppb_url_request_info/nacl.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698