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

Side by Side Diff: ui/compositor/test/compositor_test_support.cc

Issue 10365007: ui: Move compositor/ directory out of gfx/, up to ui/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix DEPS Created 8 years, 7 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 | « ui/compositor/test/compositor_test_support.h ('k') | ui/compositor/test/test_compositor_host.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ui/gfx/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
11 namespace ui { 11 namespace ui {
12 12
13 class CompositorTestPlatformSupport: 13 class CompositorTestPlatformSupport:
14 public NON_EXPORTED_BASE(webkit_glue::WebKitPlatformSupportImpl) { 14 public NON_EXPORTED_BASE(webkit_glue::WebKitPlatformSupportImpl) {
15 public: 15 public:
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 } 49 }
50 50
51 void CompositorTestSupport::Terminate() { 51 void CompositorTestSupport::Terminate() {
52 DCHECK(g_webkit_support); 52 DCHECK(g_webkit_support);
53 WebKit::shutdown(); 53 WebKit::shutdown();
54 delete g_webkit_support; 54 delete g_webkit_support;
55 g_webkit_support = NULL; 55 g_webkit_support = NULL;
56 } 56 }
57 57
58 } // namespace ui 58 } // namespace ui
OLDNEW
« no previous file with comments | « ui/compositor/test/compositor_test_support.h ('k') | ui/compositor/test/test_compositor_host.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698