Chromium Code Reviews| Index: content/public/browser/render_widget_host_view.cc |
| diff --git a/content/public/browser/render_widget_host_view.cc b/content/public/browser/render_widget_host_view.cc |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..796d3d6849acc2d57d06473335d9a6555b165816 |
| --- /dev/null |
| +++ b/content/public/browser/render_widget_host_view.cc |
| @@ -0,0 +1,12 @@ |
| +// Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#include "content/public/browser/render_widget_host_view.h" |
| + |
| +RenderWidgetHostView::RenderWidgetHostView() { |
|
jam
2012/02/15 17:02:19
nit: not needed
Jói
2012/02/16 12:41:42
Done.
|
| +} |
| + |
| +RenderWidgetHostView::~RenderWidgetHostView() { |
|
jam
2012/02/15 17:02:19
nit: just put this in the .h and then we can avoid
Jói
2012/02/16 12:41:42
Done.
|
| +} |
| + |