summaryrefslogtreecommitdiffstats
path: root/components/offline_pages/offline_page_feature.h
diff options
context:
space:
mode:
authorjianli <jianli@chromium.org>2015-08-03 18:06:46 -0700
committerCommit bot <commit-bot@chromium.org>2015-08-04 01:07:48 +0000
commitf2c2a0d281d92e59150bd8f9fabfbdeeeb16d465 (patch)
tree8f128c9714f9576059cebad3e5f77622de17a56a /components/offline_pages/offline_page_feature.h
parentc692afec196e08584c548f79db3e029606554a7f (diff)
downloadchromium_src-f2c2a0d281d92e59150bd8f9fabfbdeeeb16d465.zip
chromium_src-f2c2a0d281d92e59150bd8f9fabfbdeeeb16d465.tar.gz
chromium_src-f2c2a0d281d92e59150bd8f9fabfbdeeeb16d465.tar.bz2
Support field trial check for offline pages feature
BUG=491352 TEST=none Review URL: https://codereview.chromium.org/1257103005 Cr-Commit-Position: refs/heads/master@{#341661}
Diffstat (limited to 'components/offline_pages/offline_page_feature.h')
-rw-r--r--components/offline_pages/offline_page_feature.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/components/offline_pages/offline_page_feature.h b/components/offline_pages/offline_page_feature.h
new file mode 100644
index 0000000..0bf6ad2
--- /dev/null
+++ b/components/offline_pages/offline_page_feature.h
@@ -0,0 +1,21 @@
+// Copyright 2015 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 COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_FEATURE_H_
+#define COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_FEATURE_H_
+
+#include "build/build_config.h"
+
+#if defined(OS_ANDROID)
+
+namespace offline_pages {
+
+// Returns true if offline pages is enabled.
+bool IsOfflinePagesEnabled();
+
+} // namespace offline_pages
+
+#endif // defined(OS_ANDROID)
+
+#endif // COMPONENTS_OFFLINE_PAGES_OFFLINE_PAGE_FEATURE_H_