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

Unified Diff: base/base_features.h

Issue 2811083002: Move frame eviction into components (Closed)
Patch Set: Move features into base,and rename Created 3 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: base/base_features.h
diff --git a/base/base_features.h b/base/base_features.h
new file mode 100644
index 0000000000000000000000000000000000000000..a84404ef50bd684997bd06be45794d8f5f494741
--- /dev/null
+++ b/base/base_features.h
@@ -0,0 +1,27 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef BASE_BASE_FEATURES_H_
+#define BASE_BASE_FEATURES_H_
+
+// This file defines all the base::FeatureList features for the Password Manager
+// module.
+
+#include "base/base_export.h"
+#include "base/feature_list.h"
+
+namespace base {
+
+namespace features {
+
+// All features in alphabetical order. The features should be documented
+// alongside the definition of their values in the .cc file.
+
+BASE_EXPORT extern const base::Feature kMemoryCoordinator;
+
+} // namespace features
+
+} // namespace base
+
+#endif // BASE_BASE_FEATURES_H_

Powered by Google App Engine
This is Rietveld 408576698