mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Branch CEF3 files from /branches/cef3 to /trunk/cef3 (issue #564).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@571 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
74
libcef/common/tracker.h
Normal file
74
libcef/common/tracker.h
Normal file
@@ -0,0 +1,74 @@
|
||||
// Copyright (c) 2012 The Chromium Embedded Framework Authors. All rights
|
||||
// reserved. Use of this source code is governed by a BSD-style license that
|
||||
// can be found in the LICENSE file.
|
||||
|
||||
#ifndef CEF_LIBCEF_COMMON_TRACKER_H_
|
||||
#define CEF_LIBCEF_COMMON_TRACKER_H_
|
||||
#pragma once
|
||||
|
||||
#include "include/cef_base.h"
|
||||
|
||||
// Class extended by objects that must be tracked. After creating a tracked
|
||||
// object you should add it to the appropriate track manager.
|
||||
class CefTrackNode {
|
||||
public:
|
||||
CefTrackNode();
|
||||
virtual ~CefTrackNode();
|
||||
|
||||
// Returns true if the object is currently being tracked.
|
||||
inline bool IsTracked() { return (track_prev_ || track_next_); }
|
||||
|
||||
private:
|
||||
inline CefTrackNode* GetTrackPrev() { return track_prev_; }
|
||||
inline void SetTrackPrev(CefTrackNode* base) { track_prev_ = base; }
|
||||
inline CefTrackNode* GetTrackNext() { return track_next_; }
|
||||
inline void SetTrackNext(CefTrackNode* base) { track_next_ = base; }
|
||||
|
||||
// Insert a new object into the tracking list before this object.
|
||||
void InsertTrackPrev(CefTrackNode* object);
|
||||
|
||||
// Insert a new object into the tracking list after this object.
|
||||
void InsertTrackNext(CefTrackNode* object);
|
||||
|
||||
// Remove this object from the tracking list.
|
||||
void RemoveTracking();
|
||||
|
||||
private:
|
||||
CefTrackNode* track_next_;
|
||||
CefTrackNode* track_prev_;
|
||||
|
||||
friend class CefTrackManager;
|
||||
};
|
||||
|
||||
// Class used to manage tracked objects. A single instance of this class
|
||||
// should be created for each intended usage. Any objects that have not been
|
||||
// removed by explicit calls to the Destroy() method will be removed when the
|
||||
// manager object is destroyed. A manager object can be created as either a
|
||||
// member variable of another class or by using lazy initialization:
|
||||
// base::LazyInstance<CefTrackManager> g_singleton = LAZY_INSTANCE_INITIALIZER;
|
||||
class CefTrackManager : public CefBase {
|
||||
public:
|
||||
CefTrackManager();
|
||||
virtual ~CefTrackManager();
|
||||
|
||||
// Add an object to be tracked by this manager.
|
||||
void Add(CefTrackNode* object);
|
||||
|
||||
// Delete an object tracked by this manager.
|
||||
bool Delete(CefTrackNode* object);
|
||||
|
||||
// Delete all objects tracked by this manager.
|
||||
void DeleteAll();
|
||||
|
||||
// Returns the number of objects currently being tracked.
|
||||
inline int GetCount() { return object_count_; }
|
||||
|
||||
private:
|
||||
CefTrackNode tracker_;
|
||||
int object_count_;
|
||||
|
||||
IMPLEMENT_REFCOUNTING(CefTrackManager);
|
||||
IMPLEMENT_LOCKING(CefTrackManager);
|
||||
};
|
||||
|
||||
#endif // CEF_LIBCEF_COMMON_TRACKER_H_
|
Reference in New Issue
Block a user