OLD | NEW |
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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 return m_config.compositorSupport; | 97 return m_config.compositorSupport; |
98 | 98 |
99 return m_oldPlatform ? m_oldPlatform->compositorSupport() : nullptr; | 99 return m_oldPlatform ? m_oldPlatform->compositorSupport() : nullptr; |
100 } | 100 } |
101 | 101 |
102 WebThread* TestingPlatformSupport::currentThread() | 102 WebThread* TestingPlatformSupport::currentThread() |
103 { | 103 { |
104 return m_oldPlatform ? m_oldPlatform->currentThread() : nullptr; | 104 return m_oldPlatform ? m_oldPlatform->currentThread() : nullptr; |
105 } | 105 } |
106 | 106 |
107 WebBlobRegistry* TestingPlatformSupport::blobRegistry() | 107 WebBlobRegistry* TestingPlatformSupport::getBlobRegistry() |
108 { | 108 { |
109 return m_oldPlatform ? m_oldPlatform->blobRegistry() : nullptr; | 109 return m_oldPlatform ? m_oldPlatform->getBlobRegistry() : nullptr; |
110 } | 110 } |
111 | 111 |
112 WebClipboard* TestingPlatformSupport::clipboard() | 112 WebClipboard* TestingPlatformSupport::clipboard() |
113 { | 113 { |
114 return m_oldPlatform ? m_oldPlatform->clipboard() : nullptr; | 114 return m_oldPlatform ? m_oldPlatform->clipboard() : nullptr; |
115 } | 115 } |
116 | 116 |
117 WebFileUtilities* TestingPlatformSupport::fileUtilities() | 117 WebFileUtilities* TestingPlatformSupport::fileUtilities() |
118 { | 118 { |
119 return m_oldPlatform ? m_oldPlatform->fileUtilities() : nullptr; | 119 return m_oldPlatform ? m_oldPlatform->fileUtilities() : nullptr; |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
256 ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr, nullptr,
nullptr); | 256 ThreadState::current()->registerTraceDOMWrappers(nullptr, nullptr, nullptr,
nullptr); |
257 EventTracer::initialize(); | 257 EventTracer::initialize(); |
258 HTTPNames::init(); | 258 HTTPNames::init(); |
259 } | 259 } |
260 | 260 |
261 ScopedUnittestsEnvironmentSetup::~ScopedUnittestsEnvironmentSetup() | 261 ScopedUnittestsEnvironmentSetup::~ScopedUnittestsEnvironmentSetup() |
262 { | 262 { |
263 } | 263 } |
264 | 264 |
265 } // namespace blink | 265 } // namespace blink |
OLD | NEW |