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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 ~TestingPlatformSupport() override; | 113 ~TestingPlatformSupport() override; |
114 | 114 |
115 // Platform: | 115 // Platform: |
116 WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) overrid
e; | 116 WebDiscardableMemory* allocateAndLockDiscardableMemory(size_t bytes) overrid
e; |
117 WebString defaultLocale() override; | 117 WebString defaultLocale() override; |
118 WebCompositorSupport* compositorSupport() override; | 118 WebCompositorSupport* compositorSupport() override; |
119 WebThread* currentThread() override; | 119 WebThread* currentThread() override; |
120 WebUnitTestSupport* unitTestSupport() override; | 120 WebUnitTestSupport* unitTestSupport() override; |
121 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* n
ame) override {} | 121 void registerMemoryDumpProvider(blink::WebMemoryDumpProvider*, const char* n
ame) override {} |
122 void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*) override {} | 122 void unregisterMemoryDumpProvider(blink::WebMemoryDumpProvider*) override {} |
| 123 void connectToRemoteService(const char* name, mojo::ScopedMessagePipeHandle)
override; |
123 | 124 |
124 protected: | 125 protected: |
125 const Config m_config; | 126 const Config m_config; |
126 Platform* const m_oldPlatform; | 127 Platform* const m_oldPlatform; |
127 }; | 128 }; |
128 | 129 |
129 class TestingPlatformSupportWithMockScheduler : public TestingPlatformSupport { | 130 class TestingPlatformSupportWithMockScheduler : public TestingPlatformSupport { |
130 WTF_MAKE_NONCOPYABLE(TestingPlatformSupportWithMockScheduler); | 131 WTF_MAKE_NONCOPYABLE(TestingPlatformSupportWithMockScheduler); |
131 public: | 132 public: |
132 TestingPlatformSupportWithMockScheduler(); | 133 TestingPlatformSupportWithMockScheduler(); |
133 explicit TestingPlatformSupportWithMockScheduler(const Config&); | 134 explicit TestingPlatformSupportWithMockScheduler(const Config&); |
134 ~TestingPlatformSupportWithMockScheduler() override; | 135 ~TestingPlatformSupportWithMockScheduler() override; |
135 | 136 |
136 // Platform: | 137 // Platform: |
137 WebThread* currentThread() override; | 138 WebThread* currentThread() override; |
138 TestingPlatformMockScheduler* mockWebScheduler(); | 139 TestingPlatformMockScheduler* mockWebScheduler(); |
139 | 140 |
140 protected: | 141 protected: |
141 OwnPtr<TestingPlatformMockWebThread> m_mockWebThread; | 142 OwnPtr<TestingPlatformMockWebThread> m_mockWebThread; |
142 }; | 143 }; |
143 | 144 |
144 } // namespace blink | 145 } // namespace blink |
145 | 146 |
146 #endif // TestingPlatformSupport_h | 147 #endif // TestingPlatformSupport_h |
OLD | NEW |