summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authordmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 19:38:41 +0000
committerdmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-18 19:38:41 +0000
commit46b6dddb1ef14089a336174b5e9f73c166400b8b (patch)
tree74bbdbee3c6010d30ea5841218e71216b5cf24b1 /remoting
parent31fd701637d04ae727433cfd216a6fadc2c859e6 (diff)
downloadchromium_src-46b6dddb1ef14089a336174b5e9f73c166400b8b.zip
chromium_src-46b6dddb1ef14089a336174b5e9f73c166400b8b.tar.gz
chromium_src-46b6dddb1ef14089a336174b5e9f73c166400b8b.tar.bz2
Fix up build on Mac. Needed to initialize member vars.
BUG=none TEST=build unit tests on mac Review URL: http://codereview.chromium.org/2802011 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@50271 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/client/plugin/chromoting_plugin.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/remoting/client/plugin/chromoting_plugin.cc b/remoting/client/plugin/chromoting_plugin.cc
index 55c72afe..714ee2b 100644
--- a/remoting/client/plugin/chromoting_plugin.cc
+++ b/remoting/client/plugin/chromoting_plugin.cc
@@ -25,7 +25,8 @@ const char* ChromotingPlugin::kMimeType =
ChromotingPlugin::ChromotingPlugin(NPNetscapeFuncs* browser_funcs,
NPP instance)
- : PepperPlugin(browser_funcs, instance) {
+ : PepperPlugin(browser_funcs, instance), width_(0), height_(0),
+ device_(NULL) {
}
ChromotingPlugin::~ChromotingPlugin() {