forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a synthetic field trial for the WebView APK type
I needed to fix the IsolatedSplitsSynthetic trial to only log for monochrome, and thought it might be useful to have this as well. This will let us filter UMA data by the WebView APK type, and can help us answer the age old question of how many users have standalone WebView on N+. Bug: 1150162 Change-Id: I4cc97632f514b0c54b07e205c33dd1c1d3703071 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2618625 Reviewed-by: Richard Coles <[email protected]> Commit-Queue: Clark DuVall <[email protected]> Cr-Commit-Position: refs/heads/master@{#842113}
- Loading branch information
1 parent
d0f8811
commit 7b0a540
Showing
7 changed files
with
72 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Copyright 2020 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 ANDROID_WEBVIEW_BROWSER_AW_APK_TYPE_H_ | ||
#define ANDROID_WEBVIEW_BROWSER_AW_APK_TYPE_H_ | ||
|
||
namespace android_webview { | ||
|
||
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.android_webview | ||
enum class ApkType { STANDALONE = 0, MONOCHROME = 1, TRICHROME = 2 }; | ||
|
||
} // namespace android_webview | ||
|
||
#endif // ANDROID_WEBVIEW_BROWSER_AW_APK_TYPE_H_ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters