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

Side by Side Diff: webkit/support/test_webkit_platform_support.cc

Issue 9655017: Implement WebKitPlatformSupport::canAccelerate2dCanvas (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix clang warning about inline virtual function body Created 8 years, 9 months 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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/support/test_webkit_platform_support.h" 5 #include "webkit/support/test_webkit_platform_support.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/metrics/stats_counters.h" 8 #include "base/metrics/stats_counters.h"
9 #include "base/path_service.h" 9 #include "base/path_service.h"
10 #include "base/scoped_temp_dir.h" 10 #include "base/scoped_temp_dir.h"
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
451 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) { 451 const webkit_glue::ResourceLoaderBridge::RequestInfo& request_info) {
452 return SimpleResourceLoaderBridge::Create(request_info); 452 return SimpleResourceLoaderBridge::Create(request_info);
453 } 453 }
454 454
455 webkit_glue::WebSocketStreamHandleBridge* 455 webkit_glue::WebSocketStreamHandleBridge*
456 TestWebKitPlatformSupport::CreateWebSocketBridge( 456 TestWebKitPlatformSupport::CreateWebSocketBridge(
457 WebKit::WebSocketStreamHandle* handle, 457 WebKit::WebSocketStreamHandle* handle,
458 webkit_glue::WebSocketStreamHandleDelegate* delegate) { 458 webkit_glue::WebSocketStreamHandleDelegate* delegate) {
459 return SimpleSocketStreamBridge::Create(handle, delegate); 459 return SimpleSocketStreamBridge::Create(handle, delegate);
460 } 460 }
461
462 bool TestWebKitPlatformSupport::canAccelerate2dCanvas() {
463 // We supply an OS-MESA based context for accelarated 2d
464 // canvas, which should always work.
465 return true;
466 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698