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

Side by Side Diff: third_party/WebKit/public/platform/WebCompositorSupport.h

Issue 1935783002: Delete blink::WebGraphicsContext3D and cc_blink::ContextProviderWebContext (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@sharegroup
Patch Set: rmwgc3d: export Created 4 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 2012 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 24 matching lines...) Expand all
35 namespace cc { 35 namespace cc {
36 class Layer; 36 class Layer;
37 } 37 }
38 38
39 namespace blink { 39 namespace blink {
40 40
41 class WebContentLayer; 41 class WebContentLayer;
42 class WebContentLayerClient; 42 class WebContentLayerClient;
43 class WebExternalTextureLayer; 43 class WebExternalTextureLayer;
44 class WebExternalTextureLayerClient; 44 class WebExternalTextureLayerClient;
45 class WebGraphicsContext3D;
46 class WebImageLayer; 45 class WebImageLayer;
47 class WebLayer; 46 class WebLayer;
48 class WebScrollbarLayer; 47 class WebScrollbarLayer;
49 class WebScrollbarThemeGeometry; 48 class WebScrollbarThemeGeometry;
50 49
51 class WebCompositorSupport { 50 class WebCompositorSupport {
52 public: 51 public:
53 52
54 // Layers ------------------------------------------------------- 53 // Layers -------------------------------------------------------
55 54
(...skipping 12 matching lines...) Expand all
68 67
69 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orie ntation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar) { return nullptr; } 68 virtual WebScrollbarLayer* createSolidColorScrollbarLayer(WebScrollbar::Orie ntation, int thumbThickness, int trackStart, bool isLeftSideVerticalScrollbar) { return nullptr; }
70 69
71 protected: 70 protected:
72 virtual ~WebCompositorSupport() { } 71 virtual ~WebCompositorSupport() { }
73 }; 72 };
74 73
75 } 74 }
76 75
77 #endif // WebCompositorSupport_h 76 #endif // WebCompositorSupport_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698