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

Side by Side Diff: content/public/test/unittest_test_suite.cc

Issue 15822010: Update refernces to Blink's Platform API (content) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 "content/public/test/unittest_test_suite.h" 5 #include "content/public/test/unittest_test_suite.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 #include "base/rand_util.h" 8 #include "base/rand_util.h"
9 #include "base/test/test_suite.h" 9 #include "base/test/test_suite.h"
10 #include "third_party/WebKit/Source/Platform/chromium/public/Platform.h" 10 #include "third_party/WebKit/public/platform/Platform.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" 11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h"
12 12
13 namespace content { 13 namespace content {
14 14
15 #if !defined(OS_IOS) 15 #if !defined(OS_IOS)
16 // A stubbed out WebKit platform support impl. 16 // A stubbed out WebKit platform support impl.
17 class UnitTestTestSuite::UnitTestWebKitPlatformSupport 17 class UnitTestTestSuite::UnitTestWebKitPlatformSupport
18 : public WebKit::Platform { 18 : public WebKit::Platform {
19 public: 19 public:
20 UnitTestWebKitPlatformSupport() {} 20 UnitTestWebKitPlatformSupport() {}
(...skipping 24 matching lines...) Expand all
45 #if !defined(OS_IOS) 45 #if !defined(OS_IOS)
46 WebKit::shutdown(); 46 WebKit::shutdown();
47 #endif 47 #endif
48 } 48 }
49 49
50 int UnitTestTestSuite::Run() { 50 int UnitTestTestSuite::Run() {
51 return test_suite_->Run(); 51 return test_suite_->Run();
52 } 52 }
53 53
54 } // namespace content 54 } // namespace content
OLDNEW
« no previous file with comments | « content/public/test/render_widget_test.cc ('k') | content/renderer/accessibility/accessibility_node_serializer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698