diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 21:17:06 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 21:17:06 +0000 |
commit | a36c7b41249cc92d340d569557cb794b39447c4a (patch) | |
tree | 2af0698e13bccb8a3ac247ae6d8c394f312ec638 /gpu/command_buffer/service/program_manager_unittest.cc | |
parent | b3d62312b14de9eeed5e59e0340accda0127bc93 (diff) | |
download | chromium_src-a36c7b41249cc92d340d569557cb794b39447c4a.zip chromium_src-a36c7b41249cc92d340d569557cb794b39447c4a.tar.gz chromium_src-a36c7b41249cc92d340d569557cb794b39447c4a.tar.bz2 |
Move constructor and destructor of MockGLInterface out of line.
Speeds up building all of gpu by over one minute / over 10% on my machine (from 9:23 to 8:11).
Move the mock to gpu/command_buffer/common to have a more obvious place for the cc file.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/3811006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62649 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/command_buffer/service/program_manager_unittest.cc')
-rw-r--r-- | gpu/command_buffer/service/program_manager_unittest.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gpu/command_buffer/service/program_manager_unittest.cc b/gpu/command_buffer/service/program_manager_unittest.cc index fa159de..1f66fd6 100644 --- a/gpu/command_buffer/service/program_manager_unittest.cc +++ b/gpu/command_buffer/service/program_manager_unittest.cc @@ -6,10 +6,10 @@ #include <algorithm> -#include "app/gfx/gl/gl_mock.h" #include "base/scoped_ptr.h" #include "base/string_number_conversions.h" #include "base/string_util.h" +#include "gpu/command_buffer/common/gl_mock.h" #include "testing/gtest/include/gtest/gtest.h" using ::gfx::MockGLInterface; |