OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 "webkit/tools/test_shell/test_shell_webkit_init.h" | 5 #include "webkit/tools/test_shell/test_shell_webkit_init.h" |
6 | 6 |
7 #include "base/metrics/stats_counters.h" | 7 #include "base/metrics/stats_counters.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "media/base/media.h" | 9 #include "media/base/media.h" |
10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" | 10 #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 key, value, WebKit::WebIDBKeyPath::create(keyPath)); | 291 key, value, WebKit::WebIDBKeyPath::create(keyPath)); |
292 } | 292 } |
293 | 293 |
294 WebKit::WebSharedWorkerRepository* | 294 WebKit::WebSharedWorkerRepository* |
295 TestShellWebKitInit::sharedWorkerRepository() { | 295 TestShellWebKitInit::sharedWorkerRepository() { |
296 return NULL; | 296 return NULL; |
297 } | 297 } |
298 | 298 |
299 WebKit::WebGraphicsContext3D* TestShellWebKitInit::createGraphicsContext3D() { | 299 WebKit::WebGraphicsContext3D* TestShellWebKitInit::createGraphicsContext3D() { |
300 return new webkit::gpu::WebGraphicsContext3DInProcessImpl( | 300 return new webkit::gpu::WebGraphicsContext3DInProcessImpl( |
301 gfx::kNullPluginWindow); | 301 gfx::kNullPluginWindow, NULL); |
302 } | 302 } |
OLD | NEW |