Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(114)

Side by Side Diff: base/memory/memory_coordinator_proxy.h

Issue 2434353003: Introduce MemoryCoordinatorProxy in base (Closed)
Patch Set: Address on reviews Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
6 #define BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
7
8 #include "base/base_export.h"
9 #include "base/callback.h"
10 #include "base/memory/memory_coordinator_client.h"
11 #include "base/memory/singleton.h"
12
13 namespace base {
14
15 // The proxy of MemoryCoordinator to be accessed from components that is not
haraken 2016/10/24 09:01:16 is => are
hajimehoshi 2016/10/24 10:56:52 ouch
16 // in content/browser e.g. net.
17 class BASE_EXPORT MemoryCoordinatorProxy {
18 public:
19 using GetCurrentMemoryStateCallback = base::Callback<MemoryState()>;
20
21 static MemoryCoordinatorProxy* GetInstance();
22
23 // Returns the current memory state.
24 MemoryState GetCurrentMemoryState() const;
25
26 // Sets state-getter callback.
27 void SetGetCurrentMemoryStateCallback(GetCurrentMemoryStateCallback callback);
28
29 private:
30 friend struct base::DefaultSingletonTraits<MemoryCoordinatorProxy>;
31
32 MemoryCoordinatorProxy();
33 virtual ~MemoryCoordinatorProxy();
34
35 GetCurrentMemoryStateCallback callback_;
36
37 DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorProxy);
38 };
39
40 } // namespace base
41
42 #endif // BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698