summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authordcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 13:02:30 +0000
committerdcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-14 13:02:30 +0000
commit866a9011b55e131795b7ae80bad238b62c1ece71 (patch)
treebff791e299b60a3d98137ff45695b00f4408ebb0 /apps
parent401a2c3992fd04c7e7c1b521708d250621c19bfd (diff)
downloadchromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.zip
chromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.tar.gz
chromium_src-866a9011b55e131795b7ae80bad238b62c1ece71.tar.bz2
Rewrite scoped_ptr<T>(NULL) to use the default ctor.
This is the result of running the rewrite_scoped_ptr_ctor_null tool across all files built on Mac. BUG=173286 R=tapted@chromium.org, wez@chromium.org Review URL: https://codereview.chromium.org/16844021 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206406 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'apps')
-rw-r--r--apps/app_shim/app_shim_host_mac.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/apps/app_shim/app_shim_host_mac.cc b/apps/app_shim/app_shim_host_mac.cc
index 3b4423b..097cb2f 100644
--- a/apps/app_shim/app_shim_host_mac.cc
+++ b/apps/app_shim/app_shim_host_mac.cc
@@ -14,9 +14,7 @@
#include "content/public/browser/browser_thread.h"
#include "ipc/ipc_channel_proxy.h"
-AppShimHost::AppShimHost()
- : channel_(NULL), profile_(NULL) {
-}
+AppShimHost::AppShimHost() : profile_(NULL) {}
AppShimHost::~AppShimHost() {
DCHECK(CalledOnValidThread());