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

Side by Side Diff: sky/engine/core/css/RemoteFontFaceSource.h

Issue 736373003: Fix sky include guards to match Chromium style (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Reran script after fixing missing break 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/core/css/Rect.h ('k') | sky/engine/core/css/RuleFeature.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef RemoteFontFaceSource_h 5 #ifndef SKY_ENGINE_CORE_CSS_REMOTEFONTFACESOURCE_H_
6 #define RemoteFontFaceSource_h 6 #define SKY_ENGINE_CORE_CSS_REMOTEFONTFACESOURCE_H_
7 7
8 #include "sky/engine/core/css/CSSFontFaceSource.h" 8 #include "sky/engine/core/css/CSSFontFaceSource.h"
9 #include "sky/engine/core/fetch/FontResource.h" 9 #include "sky/engine/core/fetch/FontResource.h"
10 #include "sky/engine/core/fetch/ResourcePtr.h" 10 #include "sky/engine/core/fetch/ResourcePtr.h"
11 11
12 namespace blink { 12 namespace blink {
13 13
14 class FontLoader; 14 class FontLoader;
15 15
16 class RemoteFontFaceSource : public CSSFontFaceSource, public FontResourceClient { 16 class RemoteFontFaceSource : public CSSFontFaceSource, public FontResourceClient {
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 double m_fallbackPaintTime; 54 double m_fallbackPaintTime;
55 }; 55 };
56 56
57 ResourcePtr<FontResource> m_font; 57 ResourcePtr<FontResource> m_font;
58 RefPtr<FontLoader> m_fontLoader; 58 RefPtr<FontLoader> m_fontLoader;
59 FontLoadHistograms m_histograms; 59 FontLoadHistograms m_histograms;
60 }; 60 };
61 61
62 } // namespace blink 62 } // namespace blink
63 63
64 #endif 64 #endif // SKY_ENGINE_CORE_CSS_REMOTEFONTFACESOURCE_H_
OLDNEW
« no previous file with comments | « sky/engine/core/css/Rect.h ('k') | sky/engine/core/css/RuleFeature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698