Commit 9fbb3dd8 authored by asargent@chromium.org's avatar asargent@chromium.org

Fix clang error.

BUG=none
TEST=none

TBR=mpcomplete@chromium.org

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@86785 0039d316-1c4b-4281-b951-d872f2087c98
parent 162a2228
...@@ -52,6 +52,9 @@ static base::LazyInstance<Whitelist> ...@@ -52,6 +52,9 @@ static base::LazyInstance<Whitelist>
} // namespace } // namespace
CrxInstaller::WhitelistEntry::WhitelistEntry() {}
CrxInstaller::WhitelistEntry::~WhitelistEntry() {}
// static // static
void CrxInstaller::SetWhitelistedInstallId(const std::string& id) { void CrxInstaller::SetWhitelistedInstallId(const std::string& id) {
CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI)); CHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
......
...@@ -56,6 +56,9 @@ class CrxInstaller ...@@ -56,6 +56,9 @@ class CrxInstaller
static void SetWhitelistedInstallId(const std::string& id); static void SetWhitelistedInstallId(const std::string& id);
struct WhitelistEntry { struct WhitelistEntry {
WhitelistEntry();
~WhitelistEntry();
scoped_ptr<DictionaryValue> parsed_manifest; scoped_ptr<DictionaryValue> parsed_manifest;
std::string localized_name; std::string localized_name;
}; };
......
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