From 1279d5f395182c6fa783da0d85216777d931af6b Mon Sep 17 00:00:00 2001 From: "avi@chromium.org" Date: Mon, 22 Jun 2009 18:34:10 +0000 Subject: Theme image support for the Mac. BUG=none TEST=none Review URL: http://codereview.chromium.org/140007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18925 0039d316-1c4b-4281-b951-d872f2087c98 --- app/theme_provider.cc | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 app/theme_provider.cc (limited to 'app/theme_provider.cc') diff --git a/app/theme_provider.cc b/app/theme_provider.cc new file mode 100644 index 0000000..7593e15 --- /dev/null +++ b/app/theme_provider.cc @@ -0,0 +1,12 @@ +// Copyright (c) 2009 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 "app/theme_provider.h" + +// We have the destructor here because GCC puts the vtable in the first file +// that includes a virtual function of the class. Leaving it just in the .h file +// means that GCC will fail to link. + +ThemeProvider::~ThemeProvider() { +} -- cgit v1.1