diff options
author | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-31 17:59:29 +0000 |
---|---|---|
committer | yurys@chromium.org <yurys@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-07-31 17:59:29 +0000 |
commit | 21261ce03b92ce57e7efc19c681ff788e489de81 (patch) | |
tree | 25ff94bd4bd0b5181609638206f82ae83f6bf03c /cc/resources/tile.h | |
parent | 1ecb50f178b0539c3bc83772b5b6688320b4d824 (diff) | |
download | chromium_src-21261ce03b92ce57e7efc19c681ff788e489de81.zip chromium_src-21261ce03b92ce57e7efc19c681ff788e489de81.tar.gz chromium_src-21261ce03b92ce57e7efc19c681ff788e489de81.tar.bz2 |
Add builders for tracing event's structural arguments
The new classes allow building JSON-like structural arguments. Current implementation uses base::Value as backing store but that can be replaced in the future with something more efficient without changing client code.
All clients of cc/debug/traced_value.h should eventually switch to use the new builders.
BUG=361045
Review URL: https://codereview.chromium.org/380763002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@286849 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources/tile.h')
-rw-r--r-- | cc/resources/tile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc/resources/tile.h b/cc/resources/tile.h index 9aeabfa..8d91446 100644 --- a/cc/resources/tile.h +++ b/cc/resources/tile.h @@ -103,7 +103,7 @@ class CC_EXPORT Tile : public RefCountedManaged<Tile> { return false; } - scoped_ptr<base::Value> AsValue() const; + void AsValueInto(base::debug::TracedValue* dict) const; inline bool IsReadyToDraw() const { for (int mode = 0; mode < NUM_RASTER_MODES; ++mode) { |