d663b4eaee
* chore: fix cpplint 'include_what_you_use' warnings Typically by including <memory>, <utility> etc. * chore: fix 'static/global string constant' warning Use C style strings instead of std::string. Style guide forbids non-trivial static / global variables. https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables /home/charles/electron/electron-gn/src/electron/script/cpplint.js * refactor: remove global string variables. Fix 'global string variables are not permitted' linter warnings by using the base::NoDestructor<> wrapper to make it explicit that these variables are never destroyed. The style guide's take on globals with nontrivial destructors: https://google.github.io/styleguide/cppguide.html#Static_and_Global_Variables * fix: initializer error introduced in last commit * fix: remove WIP file that was included by accident * fix: include order * fix: include order * fix: include order * fix: include order, again
66 lines
1.5 KiB
C++
66 lines
1.5 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include "atom/browser/api/trackable_object.h"
|
|
|
|
#include <memory>
|
|
|
|
#include "atom/browser/atom_browser_main_parts.h"
|
|
#include "base/bind.h"
|
|
#include "base/supports_user_data.h"
|
|
|
|
namespace mate {
|
|
|
|
namespace {
|
|
|
|
const char* kTrackedObjectKey = "TrackedObjectKey";
|
|
|
|
class IDUserData : public base::SupportsUserData::Data {
|
|
public:
|
|
explicit IDUserData(int32_t id) : id_(id) {}
|
|
|
|
operator int32_t() const { return id_; }
|
|
|
|
private:
|
|
int32_t id_;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(IDUserData);
|
|
};
|
|
|
|
} // namespace
|
|
|
|
TrackableObjectBase::TrackableObjectBase() : weak_factory_(this) {
|
|
atom::AtomBrowserMainParts::Get()->RegisterDestructionCallback(
|
|
GetDestroyClosure());
|
|
}
|
|
|
|
TrackableObjectBase::~TrackableObjectBase() {}
|
|
|
|
base::OnceClosure TrackableObjectBase::GetDestroyClosure() {
|
|
return base::BindOnce(&TrackableObjectBase::Destroy,
|
|
weak_factory_.GetWeakPtr());
|
|
}
|
|
|
|
void TrackableObjectBase::Destroy() {
|
|
delete this;
|
|
}
|
|
|
|
void TrackableObjectBase::AttachAsUserData(base::SupportsUserData* wrapped) {
|
|
wrapped->SetUserData(kTrackedObjectKey,
|
|
std::make_unique<IDUserData>(weak_map_id_));
|
|
}
|
|
|
|
// static
|
|
int32_t TrackableObjectBase::GetIDFromWrappedClass(
|
|
base::SupportsUserData* wrapped) {
|
|
if (wrapped) {
|
|
auto* id =
|
|
static_cast<IDUserData*>(wrapped->GetUserData(kTrackedObjectKey));
|
|
if (id)
|
|
return *id;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
} // namespace mate
|