diff options
author | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-30 21:26:02 +0000 |
---|---|---|
committer | lipalani@chromium.org <lipalani@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-30 21:26:02 +0000 |
commit | df85e337e14903d19d597b41ada11288b9c27205 (patch) | |
tree | bca32c82be09bccea4a86240c4c2eb3b5a10c79b | |
parent | 6b67a42e7e8807c0752887f558a10cf87ec5f6c2 (diff) | |
download | chromium_src-df85e337e14903d19d597b41ada11288b9c27205.zip chromium_src-df85e337e14903d19d597b41ada11288b9c27205.tar.gz chromium_src-df85e337e14903d19d597b41ada11288b9c27205.tar.bz2 |
fix a build break.
BUG=
TEST=
Review URL: http://codereview.chromium.org/6778030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79897 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/sync/glue/data_type_manager.cc | 15 | ||||
-rw-r--r-- | chrome/browser/sync/glue/data_type_manager.h | 3 | ||||
-rw-r--r-- | chrome/chrome_browser.gypi | 1 |
3 files changed, 19 insertions, 0 deletions
diff --git a/chrome/browser/sync/glue/data_type_manager.cc b/chrome/browser/sync/glue/data_type_manager.cc new file mode 100644 index 0000000..993230b --- /dev/null +++ b/chrome/browser/sync/glue/data_type_manager.cc @@ -0,0 +1,15 @@ +// Copyright (c) 2011 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 "chrome/browser/sync/glue/data_type_manager.h" + +namespace browser_sync { + +DataTypeManager::ConfigureResultWithErrorLocation:: + ~ConfigureResultWithErrorLocation() {} + +DataTypeManager::ConfigureResultWithErrorLocation:: + ConfigureResultWithErrorLocation() {} + +} // namespace browser_sync diff --git a/chrome/browser/sync/glue/data_type_manager.h b/chrome/browser/sync/glue/data_type_manager.h index c37b639..4bce344 100644 --- a/chrome/browser/sync/glue/data_type_manager.h +++ b/chrome/browser/sync/glue/data_type_manager.h @@ -54,6 +54,7 @@ class DataTypeManager { ConfigureResult result; scoped_ptr<tracked_objects::Location> location; + ConfigureResultWithErrorLocation(); ConfigureResultWithErrorLocation(const ConfigureResult& result, const tracked_objects::Location& location) : result(result) { this->location.reset(new tracked_objects::Location( @@ -61,6 +62,8 @@ class DataTypeManager { location.file_name(), location.line_number())); } + + ~ConfigureResultWithErrorLocation(); }; typedef std::set<syncable::ModelType> TypeSet; diff --git a/chrome/chrome_browser.gypi b/chrome/chrome_browser.gypi index a94b6ab..5ef4d7a 100644 --- a/chrome/chrome_browser.gypi +++ b/chrome/chrome_browser.gypi @@ -1838,6 +1838,7 @@ 'browser/sync/glue/change_processor.cc', 'browser/sync/glue/change_processor.h', 'browser/sync/glue/data_type_controller.h', + 'browser/sync/glue/data_type_manager.cc', 'browser/sync/glue/data_type_manager.h', 'browser/sync/glue/data_type_manager_impl.cc', 'browser/sync/glue/data_type_manager_impl.h', |