diff options
author | apacible <apacible@chromium.org> | 2016-01-08 08:08:27 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-08 16:09:20 +0000 |
commit | 977d1244a798fb3d8bb28d3deb3b6f2dca92be1a (patch) | |
tree | f2fdaea20a0e57fea18d8d80ac9f088d09248233 /chrome/common/pref_names.h | |
parent | c71fbc38baa4a38cb12c81738141879e91deaa57 (diff) | |
download | chromium_src-977d1244a798fb3d8bb28d3deb3b6f2dca92be1a.zip chromium_src-977d1244a798fb3d8bb28d3deb3b6f2dca92be1a.tar.gz chromium_src-977d1244a798fb3d8bb28d3deb3b6f2dca92be1a.tar.bz2 |
[Media Router] Add First Run Flow acknowledgement preference.
Part 2.
kMediaRouterFirstRunFlowAcknowledged is a new syncable preference that tracks whether or not the user (of a profile) has acknowledged the first run flow, or nux, in the Media Router dialog. This is initially set to false; once the user has clicked the acknowledgement button to dismiss the first run flow in the WebUI, this pref is updated.
BUG=560457
Review URL: https://codereview.chromium.org/1563063002
Cr-Commit-Position: refs/heads/master@{#368340}
Diffstat (limited to 'chrome/common/pref_names.h')
-rw-r--r-- | chrome/common/pref_names.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/pref_names.h b/chrome/common/pref_names.h index 6993094..a49a2b2 100644 --- a/chrome/common/pref_names.h +++ b/chrome/common/pref_names.h @@ -792,6 +792,10 @@ extern const char kAllowDinosaurEasterEgg[]; extern const char kClickedUpdateMenuItem[]; #endif +#if defined(ENABLE_MEDIA_ROUTER) +extern const char kMediaRouterFirstRunFlowAcknowledged[]; +#endif + } // namespace prefs #endif // CHROME_COMMON_PREF_NAMES_H_ |