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

Side by Side Diff: third_party/WebKit/public/web/WebDataSaverFlag.h

Issue 2881073003: Support DataSaver for SharedWorker (Closed)
Patch Set: fix #include "public/web/WebDataSaverFlag.h" Created 3 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
(Empty)
1 // Copyright 2017 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be found
3 // in the LICENSE file.
4
5 #ifndef WebDataSaverFlag_h
6 #define WebDataSaverFlag_h
7
8 namespace blink {
9
10 // Describes whether Data-Saver is enabled or not.
11 enum class WebDataSaverFlag { kDisabled = 0, kEnabled, kLast = kEnabled };
kinuko 2017/05/18 03:48:21 Does this need to be in public/web? (They're not t
12
13 } // namespace blink
14
15 #endif // WebDataSaverFlag_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698