diff options
author | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-20 17:56:18 +0000 |
---|---|---|
committer | estade@chromium.org <estade@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-20 17:56:18 +0000 |
commit | d6968dda8612fe906d8e25bcc384641b28e1af42 (patch) | |
tree | e4977dfdb8d3453dbb04a596430f6c9fd31cccbe /chrome | |
parent | f73bae9079d1d06b07eadaf86a2b4d7338fc78f9 (diff) | |
download | chromium_src-d6968dda8612fe906d8e25bcc384641b28e1af42.zip chromium_src-d6968dda8612fe906d8e25bcc384641b28e1af42.tar.gz chromium_src-d6968dda8612fe906d8e25bcc384641b28e1af42.tar.bz2 |
Remove an annoying NOTIMPLEMNETED.
This notimpl shows up every time a renderer crashes. People
frequently post it in bug reports as if it's meaningful. Get
rid of it.
BUG=TEST=none
Review URL: http://codereview.chromium.org/294028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@29532 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r-- | chrome/common/temp_scaffolding_stubs.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/chrome/common/temp_scaffolding_stubs.h b/chrome/common/temp_scaffolding_stubs.h index d4097b8..a310508 100644 --- a/chrome/common/temp_scaffolding_stubs.h +++ b/chrome/common/temp_scaffolding_stubs.h @@ -49,7 +49,7 @@ void InstallJankometer(const CommandLine&); #if !defined(OS_MACOSX) class ViewMsg_Print_Params; -// Printing is all (obviously) not implemented. +// Printing is only partially implemented. // http://code.google.com/p/chromium/issues/detail?id=9847 namespace printing { @@ -59,7 +59,6 @@ class PrintViewManager : public RenderViewHostDelegate::Printing { void Stop() { NOTIMPLEMENTED(); } void Destroy() { } bool OnRenderViewGone(RenderViewHost*) { - NOTIMPLEMENTED(); return true; // Assume for now that all renderer crashes are important. } |