diff options
author | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 17:50:46 +0000 |
---|---|---|
committer | erg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-08 17:50:46 +0000 |
commit | 02d08e07d137b394792d15b712d029455713b195 (patch) | |
tree | f1a662492bc8a3aa9b336b459cc6d07531ec0b02 /chrome/browser/chrome_plugin_host.cc | |
parent | 2aad74f0f82e51769b6a11516d1136722aead390 (diff) | |
download | chromium_src-02d08e07d137b394792d15b712d029455713b195.zip chromium_src-02d08e07d137b394792d15b712d029455713b195.tar.gz chromium_src-02d08e07d137b394792d15b712d029455713b195.tar.bz2 |
FBTF: Small nits; moving virtual methods to implementation.
BUG=none
TEST=compiles
Review URL: http://codereview.chromium.org/3627002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61976 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/chrome_plugin_host.cc')
-rw-r--r-- | chrome/browser/chrome_plugin_host.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/browser/chrome_plugin_host.cc b/chrome/browser/chrome_plugin_host.cc index 0789957..6bacfd0 100644 --- a/chrome/browser/chrome_plugin_host.cc +++ b/chrome/browser/chrome_plugin_host.cc @@ -813,6 +813,12 @@ CPBrowserFuncs* GetCPBrowserFuncsForBrowser() { return &browser_funcs; } +void CPCommandInterface::OnCommandInvoked(CPError retval) { + delete this; +} + +void CPCommandInterface::OnCommandResponse(CPError retval) {} + void CPHandleCommand(int command, CPCommandInterface* data, CPBrowsingContext context) { // Sadly if we try and pass context through, we seem to break cl's little |