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

Side by Side Diff: gpu/command_buffer/service/id_manager_unittest.cc

Issue 8052015: Revert 102978 - Change X11 error handler override to allow easy X11 error checking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 gtest.h out of order because <X11/X.h> #define's Bool & None, which 5 #include "gpu/command_buffer/service/id_manager.h"
6 // gtest uses as struct names (inside a namespace). This means that
7 // #include'ing gtest after anything that pulls in X.h fails to compile.
8 // This is http://code.google.com/p/googletest/issues/detail?id=371
9 #include "testing/gtest/include/gtest/gtest.h" 6 #include "testing/gtest/include/gtest/gtest.h"
10 #include "gpu/command_buffer/service/id_manager.h"
11 7
12 namespace gpu { 8 namespace gpu {
13 namespace gles2 { 9 namespace gles2 {
14 10
15 class IdManagerTest : public testing::Test { 11 class IdManagerTest : public testing::Test {
16 public: 12 public:
17 IdManagerTest() { 13 IdManagerTest() {
18 } 14 }
19 15
20 protected: 16 protected:
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 EXPECT_FALSE(manager_.RemoveMapping(kClientId1, kServiceId1)); 65 EXPECT_FALSE(manager_.RemoveMapping(kClientId1, kServiceId1));
70 EXPECT_FALSE(manager_.RemoveMapping(kClientId2, kServiceId1)); 66 EXPECT_FALSE(manager_.RemoveMapping(kClientId2, kServiceId1));
71 EXPECT_FALSE(manager_.RemoveMapping(kClientId1, kServiceId2)); 67 EXPECT_FALSE(manager_.RemoveMapping(kClientId1, kServiceId2));
72 // Check we get an error if we try to map an existing id. 68 // Check we get an error if we try to map an existing id.
73 EXPECT_FALSE(manager_.AddMapping(kClientId2, kServiceId2)); 69 EXPECT_FALSE(manager_.AddMapping(kClientId2, kServiceId2));
74 EXPECT_FALSE(manager_.AddMapping(kClientId2, kServiceId1)); 70 EXPECT_FALSE(manager_.AddMapping(kClientId2, kServiceId1));
75 } 71 }
76 72
77 } // namespace gles2 73 } // namespace gles2
78 } // namespace gpu 74 } // namespace gpu
75
76
OLDNEW
« no previous file with comments | « gpu/command_buffer/service/gles2_cmd_decoder.cc ('k') | gpu/command_buffer/service/program_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698