OLD | NEW |
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 "ui/compositor/test/compositor_test_support.h" | 5 #include "ui/compositor/test/compositor_test_support.h" |
6 | 6 |
7 #include "base/compiler_specific.h" | 7 #include "base/compiler_specific.h" |
8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" | 8 #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" |
9 #include "webkit/glue/webkitplatformsupport_impl.h" | 9 #include "webkit/glue/webkitplatformsupport_impl.h" |
10 | 10 |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 } | 51 } |
52 | 52 |
53 void CompositorTestSupport::Terminate() { | 53 void CompositorTestSupport::Terminate() { |
54 DCHECK(g_webkit_support); | 54 DCHECK(g_webkit_support); |
55 WebKit::shutdown(); | 55 WebKit::shutdown(); |
56 delete g_webkit_support; | 56 delete g_webkit_support; |
57 g_webkit_support = NULL; | 57 g_webkit_support = NULL; |
58 } | 58 } |
59 | 59 |
60 } // namespace ui | 60 } // namespace ui |
OLD | NEW |