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

Side by Side Diff: sky/engine/testing/platform/platform_impl.cc

Issue 892053002: Cleanup unused #includes and declarations in PlatformImpl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Leave locale Created 5 years, 10 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
« no previous file with comments | « sky/engine/testing/platform/platform_impl.h ('k') | sky/viewer/platform/platform_impl.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 "sky/engine/testing/platform/platform_impl.h" 5 #include "sky/engine/testing/platform/platform_impl.h"
6 6
7 #include <cmath>
8
9 #include "base/rand_util.h"
10 #include "base/stl_util.h"
11 #include "base/synchronization/waitable_event.h"
12 #include "base/time/time.h"
13 #include "net/base/data_url.h"
14 #include "net/base/mime_util.h"
15 #include "net/base/net_errors.h"
16
17 namespace sky { 7 namespace sky {
18 8
19 PlatformImpl::PlatformImpl() { 9 PlatformImpl::PlatformImpl() {
20 } 10 }
21 11
22 PlatformImpl::~PlatformImpl() { 12 PlatformImpl::~PlatformImpl() {
23 } 13 }
24 14
25 blink::WebString PlatformImpl::defaultLocale() { 15 blink::WebString PlatformImpl::defaultLocale() {
26 return blink::WebString::fromUTF8("en-US"); 16 return blink::WebString::fromUTF8("en-US");
27 } 17 }
28 18
29 blink::WebUnitTestSupport* PlatformImpl::unitTestSupport() { 19 blink::WebUnitTestSupport* PlatformImpl::unitTestSupport() {
30 return &unit_test_support_; 20 return &unit_test_support_;
31 } 21 }
32 22
33 } // namespace sky 23 } // namespace sky
OLDNEW
« no previous file with comments | « sky/engine/testing/platform/platform_impl.h ('k') | sky/viewer/platform/platform_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698