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

Side by Side Diff: gpu/command_buffer/client/share_group_unittest.cc

Issue 10836116: Purge ImplementsThreadSafeReferenceCounting() from the codebase now that Task is dead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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
« no previous file with comments | « gpu/command_buffer/client/share_group.cc ('k') | gpu/gpu_common.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 // Tests for the ShareGroup.
6
7 #include "gpu/command_buffer/client/share_group.h"
8
9 #include "testing/gtest/include/gtest/gtest.h"
10 #include "testing/gmock/include/gmock/gmock.h"
11
12 namespace gpu {
13 namespace gles2 {
14
15 class ShareGroupTest : public testing::Test {
16 protected:
17
18 virtual void SetUp() {
19 share_group_ = ShareGroup::Ref(new ShareGroup(false, false));
20 }
21
22 virtual void TearDown() {
23 }
24
25 scoped_refptr<ShareGroup> share_group_;
26 };
27
28 TEST_F(ShareGroupTest, Basic) {
29 EXPECT_TRUE(ShareGroup::ImplementsThreadSafeReferenceCounting());
30 }
31
32 } // namespace gles2
33 } // namespace gpu
34
35
OLDNEW
« no previous file with comments | « gpu/command_buffer/client/share_group.cc ('k') | gpu/gpu_common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698