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

Side by Side Diff: third_party/WebKit/Source/platform/testing/TestingPlatformSupport.cpp

Issue 1456873003: More regular Platform implementations in unit tests (reland.) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: have GN disable c4267 also Created 5 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 12 matching lines...) Expand all
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "config.h" 31 #include "config.h"
32 32
33 #include "platform/TestingPlatformSupport.h" 33 #include "platform/testing/TestingPlatformSupport.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 TestingDiscardableMemory::TestingDiscardableMemory(size_t size) : m_data(size), m_isLocked(true) 37 TestingDiscardableMemory::TestingDiscardableMemory(size_t size) : m_data(size), m_isLocked(true)
38 { 38 {
39 } 39 }
40 40
41 TestingDiscardableMemory::~TestingDiscardableMemory() 41 TestingDiscardableMemory::~TestingDiscardableMemory()
42 { 42 {
43 } 43 }
(...skipping 18 matching lines...) Expand all
62 // Force eviction to catch clients not correctly checking the return value o f lock(). 62 // Force eviction to catch clients not correctly checking the return value o f lock().
63 memset(m_data.data(), 0, m_data.size()); 63 memset(m_data.data(), 0, m_data.size());
64 } 64 }
65 65
66 WebMemoryAllocatorDump* TestingDiscardableMemory::createMemoryAllocatorDump(cons t WebString& name, WebProcessMemoryDump* dump) const 66 WebMemoryAllocatorDump* TestingDiscardableMemory::createMemoryAllocatorDump(cons t WebString& name, WebProcessMemoryDump* dump) const
67 { 67 {
68 ASSERT_NOT_REACHED(); 68 ASSERT_NOT_REACHED();
69 return nullptr; 69 return nullptr;
70 } 70 }
71 71
72 TestingPlatformSupport::TestingPlatformSupport()
73 : TestingPlatformSupport(TestingPlatformSupport::Config())
74 {
75 }
76
72 TestingPlatformSupport::TestingPlatformSupport(const Config& config) 77 TestingPlatformSupport::TestingPlatformSupport(const Config& config)
73 : m_config(config) 78 : m_config(config)
74 , m_oldPlatform(Platform::current()) 79 , m_oldPlatform(Platform::current())
75 { 80 {
76 Platform::initialize(this); 81 Platform::initialize(this);
77 } 82 }
78 83
79 TestingPlatformSupport::~TestingPlatformSupport() 84 TestingPlatformSupport::~TestingPlatformSupport()
80 { 85 {
81 Platform::initialize(m_oldPlatform); 86 Platform::initialize(m_oldPlatform);
(...skipping 18 matching lines...) Expand all
100 WebString TestingPlatformSupport::defaultLocale() 105 WebString TestingPlatformSupport::defaultLocale()
101 { 106 {
102 return WebString::fromUTF8("en-US"); 107 return WebString::fromUTF8("en-US");
103 } 108 }
104 109
105 WebCompositorSupport* TestingPlatformSupport::compositorSupport() 110 WebCompositorSupport* TestingPlatformSupport::compositorSupport()
106 { 111 {
107 return m_config.compositorSupport; 112 return m_config.compositorSupport;
108 } 113 }
109 114
115 WebThread* TestingPlatformSupport::currentThread()
116 {
117 return m_oldPlatform ? m_oldPlatform->currentThread() : nullptr;
118 }
119
110 } // namespace blink 120 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698