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

Side by Side Diff: sky/viewer/runtime_flags.h

Issue 854303002: Sky should use an SkPicture when drawing (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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
(Empty)
1 // Copyright 2015 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.
4
5 #ifndef SKY_VIEWER_RUNTIME_FLAGS_H_
6 #define SKY_VIEWER_RUNTIME_FLAGS_H_
7
8 namespace mojo {
9 class ApplicationImpl;
10 }
11
12 namespace sky {
13
14 struct RuntimeFlags {
eseidel1 2015/01/20 02:04:03 No struct ever stays a struct. I'd just make this
abarth-chromium 2015/01/20 02:47:38 Fixed.
15 bool testing;
eseidel1 2015/01/20 02:04:03 Seems a bit strange, but OK.
16
17 static void Initialize(mojo::ApplicationImpl* app);
18 static const RuntimeFlags& Get();
19 };
20
21 } // namespace sky
22
23 #endif // SKY_VIEWER_RUNTIME_FLAGS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698