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

Side by Side Diff: net/base/bzip2_filter_unittest.cc

Issue 13052: Cleanup: move base/platform_test.h -> testing/ (Closed)
Patch Set: fix mark's comment Created 12 years 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
« no previous file with comments | « chrome/chrome.xcodeproj/project.pbxproj ('k') | net/base/file_stream_unittest.cc » ('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) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 <fstream> 5 #include <fstream>
6 #include <iostream> 6 #include <iostream>
7 7
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/platform_test.h"
11 #include "base/scoped_ptr.h" 10 #include "base/scoped_ptr.h"
12 #include "net/base/bzip2_filter.h" 11 #include "net/base/bzip2_filter.h"
13 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
13 #include "testing/platform_test.h"
14 #include "third_party/bzip2/bzlib.h" 14 #include "third_party/bzip2/bzlib.h"
15 15
16 namespace { 16 namespace {
17 17
18 const char* kExtraData = "Test Data, More Test Data, Even More Data of Test"; 18 const char* kExtraData = "Test Data, More Test Data, Even More Data of Test";
19 const int kExtraDataBufferSize = 49; 19 const int kExtraDataBufferSize = 49;
20 const int kDefaultBufferSize = 4096; 20 const int kDefaultBufferSize = 4096;
21 const int kSmallBufferSize = 128; 21 const int kSmallBufferSize = 128;
22 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB 22 const int kMaxBufferSize = 1048576; // 1048576 == 2^20 == 1 MB
23 23
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 DecodeAndCompareWithFilter(filter.get(), 379 DecodeAndCompareWithFilter(filter.get(),
380 source_buffer(), 380 source_buffer(),
381 source_len() + kExtraDataBufferSize, 381 source_len() + kExtraDataBufferSize,
382 more_data, 382 more_data,
383 more_data_len, 383 more_data_len,
384 kDefaultBufferSize, 384 kDefaultBufferSize,
385 true); 385 true);
386 } 386 }
387 387
388 } // namespace 388 } // namespace
OLDNEW
« no previous file with comments | « chrome/chrome.xcodeproj/project.pbxproj ('k') | net/base/file_stream_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698