Commit b9476c72 authored by derat@chromium.org's avatar derat@chromium.org

chromeos: Add "virtual" to d'tor to appease clang.

The lack of a "virtual" on InitialBrowserWindowObserver's
destructor generates an error on the linux_chromeos_clang
builder.

BUG=none
TEST=none

Review URL: http://codereview.chromium.org/8586039

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110566 0039d316-1c4b-4281-b951-d872f2087c98
parent 68a1d2b3
......@@ -29,7 +29,7 @@ namespace chromeos {
class InitialBrowserWindowObserver : public content::NotificationObserver {
public:
InitialBrowserWindowObserver();
~InitialBrowserWindowObserver() {}
virtual ~InitialBrowserWindowObserver() {}
// content::NotificationObserver implementation:
virtual void Observe(int type,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment