1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
// Copyright (c) 2012 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.
#ifndef CHROME_BROWSER_EXTENSIONS_SHELL_WINDOW_GEOMETRY_CACHE_H_
#define CHROME_BROWSER_EXTENSIONS_SHELL_WINDOW_GEOMETRY_CACHE_H_
#include <map>
#include <set>
#include <string>
#include "base/memory/scoped_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/timer.h"
#include "base/values.h"
#include "content/public/browser/notification_observer.h"
#include "content/public/browser/notification_registrar.h"
#include "ui/gfx/rect.h"
class Profile;
namespace extensions {
class StateStore;
// A cache for persisted geometry of shell windows, both to not have to wait
// for IO when creating a new window, and to not cause IO on every window
// geometry change.
class ShellWindowGeometryCache
: public base::SupportsWeakPtr<ShellWindowGeometryCache>,
public content::NotificationObserver {
public:
ShellWindowGeometryCache(Profile* profile, StateStore* state_store);
virtual ~ShellWindowGeometryCache();
void SaveGeometry(const std::string& extension_id,
const std::string& window_id,
const gfx::Rect& bounds);
bool GetGeometry(const std::string& extension_id,
const std::string& window_id,
gfx::Rect* bounds) const;
private:
// content::NotificationObserver
virtual void Observe(int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) OVERRIDE;
void OnExtensionLoaded(const std::string& extension_id);
void OnExtensionUnloaded(const std::string& extension_id);
void GeometryFromStorage(const std::string& extension_id,
scoped_ptr<base::Value> value);
void SyncToStorage();
friend class ShellWindowGeometryCacheTest;
// State store.
StateStore* store_;
// Cached data
std::map<std::string, std::map<std::string, gfx::Rect> > cache_;
// Data that still needs saving
std::set<std::string> unsynced_extensions_;
// The timer used to save the data
base::OneShotTimer<ShellWindowGeometryCache> sync_timer_;
content::NotificationRegistrar registrar_;
};
} // namespace extensions
#endif // CHROME_BROWSER_EXTENSIONS_SHELL_WINDOW_GEOMETRY_CACHE_H_
|