diff options
author | ccameron@chromium.org <ccameron@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 20:13:32 +0000 |
---|---|---|
committer | ccameron@chromium.org <ccameron@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-10-24 20:13:32 +0000 |
commit | 179530896ee4dae629702ebf402d867782247bb4 (patch) | |
tree | 1a58d4a663fdf1b77c18450e49fe12115993558c /cc/resource_provider.h | |
parent | f10467372b7cc985a8f824c7b0298492e2c24c73 (diff) | |
download | chromium_src-179530896ee4dae629702ebf402d867782247bb4.zip chromium_src-179530896ee4dae629702ebf402d867782247bb4.tar.gz chromium_src-179530896ee4dae629702ebf402d867782247bb4.tar.bz2 |
Re-introduce crash instrumentation for invalid resources.
A bug that could cause this crash was fixed, but we're
still seeing crash reports.
BUG=151428
Review URL: https://chromiumcodereview.appspot.com/11238073
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@163889 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resource_provider.h')
-rw-r--r-- | cc/resource_provider.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cc/resource_provider.h b/cc/resource_provider.h index b20097e..3b66f9b 100644 --- a/cc/resource_provider.h +++ b/cc/resource_provider.h @@ -211,6 +211,11 @@ public: DISALLOW_COPY_AND_ASSIGN(ScopedWriteLockSoftware); }; + // Temporary functions for debugging crashes in issue 151428 in canary. + // Do not use these! + static void debugNotifyEnterZone(unsigned int index); + static void debugNotifyLeaveZone(); + private: struct Resource { Resource(); |