Skip to content

Instantly share code, notes, and snippets.

@jeremyroman
Last active December 11, 2018 18:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jeremyroman/77cf99fdbcf1975e50e09a775f77b91a to your computer and use it in GitHub Desktop.
Save jeremyroman/77cf99fdbcf1975e50e09a775f77b91a to your computer and use it in GitHub Desktop.
PlatformPaintWorkletInput(
Vector<std::pair<CSSPropertyID, String>> native_values)
: native_values_(std::move(native_values)) {
for (auto& pair : native_values_) {
String& s = pair.second;
if (!s.IsSafeToSendToAnotherThread())
s = s.IsolatedCopy();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment