Remove extra line from unit_tests.isolate
[chromium-blink-merge.git] / cc / ContentLayerChromiumClient.h
blob54a92673def9aa5aca4d744691a2e15a215a5e7f
1 // Copyright 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef ContentLayerChromiumClient_h
6 #define ContentLayerChromiumClient_h
8 class SkCanvas;
10 namespace cc {
11 class FloatRect;
12 class IntRect;
14 class ContentLayerChromiumClient {
15 public:
16 virtual void paintContents(SkCanvas*, const IntRect& clip, FloatRect& opaque) = 0;
18 protected:
19 virtual ~ContentLayerChromiumClient() { }
24 #endif // ContentLayerChromiumClient_h