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

Side by Side Diff: sky/engine/web/LinkHighlight.h

Issue 727933002: Remove FINAL macro to make chromium presubmit happy (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « sky/engine/web/GraphicsLayerFactoryChromium.h ('k') | sky/engine/web/SpellCheckerClientImpl.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 /* 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 28 matching lines...) Expand all
39 39
40 namespace blink { 40 namespace blink {
41 41
42 class RenderLayer; 42 class RenderLayer;
43 class RenderObject; 43 class RenderObject;
44 class Node; 44 class Node;
45 struct WebFloatRect; 45 struct WebFloatRect;
46 struct WebRect; 46 struct WebRect;
47 class WebViewImpl; 47 class WebViewImpl;
48 48
49 class LinkHighlight FINAL : public WebContentLayerClient, public WebCompositorAn imationDelegate, blink::LinkHighlightClient { 49 class LinkHighlight final : public WebContentLayerClient, public WebCompositorAn imationDelegate, blink::LinkHighlightClient {
50 public: 50 public:
51 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*); 51 static PassOwnPtr<LinkHighlight> create(Node*, WebViewImpl*);
52 virtual ~LinkHighlight(); 52 virtual ~LinkHighlight();
53 53
54 WebContentLayer* contentLayer(); 54 WebContentLayer* contentLayer();
55 WebLayer* clipLayer(); 55 WebLayer* clipLayer();
56 void startHighlightAnimationIfNeeded(); 56 void startHighlightAnimationIfNeeded();
57 void updateGeometry(); 57 void updateGeometry();
58 58
59 // WebContentLayerClient implementation. 59 // WebContentLayerClient implementation.
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 GraphicsLayer* m_currentGraphicsLayer; 92 GraphicsLayer* m_currentGraphicsLayer;
93 93
94 bool m_geometryNeedsUpdate; 94 bool m_geometryNeedsUpdate;
95 bool m_isAnimating; 95 bool m_isAnimating;
96 double m_startTime; 96 double m_startTime;
97 }; 97 };
98 98
99 } // namespace blink 99 } // namespace blink
100 100
101 #endif 101 #endif
OLDNEW
« no previous file with comments | « sky/engine/web/GraphicsLayerFactoryChromium.h ('k') | sky/engine/web/SpellCheckerClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698