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

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

Issue 2703743002: Refactor MemoryCoordinatorProxy (Closed)
Patch Set: Remove atomics Created 3 years, 10 months 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
« no previous file with comments | « no previous file | base/memory/memory_coordinator_proxy.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_ 5 #ifndef BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
6 #define BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_ 6 #define BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
7 7
8 #include "base/base_export.h" 8 #include "base/base_export.h"
9 #include "base/callback.h" 9 #include "base/callback.h"
10 #include "base/memory/memory_coordinator_client.h" 10 #include "base/memory/memory_coordinator_client.h"
11 #include "base/memory/singleton.h" 11 #include "base/memory/singleton.h"
12 12
13 namespace base { 13 namespace base {
14 14
15 // The MemoryCoordinator interface. See comments in MemoryCoordinatorProxy for
16 // method descriptions.
17 class BASE_EXPORT MemoryCoordinator {
18 public:
19 virtual ~MemoryCoordinator() {}
20
21 virtual MemoryState GetCurrentMemoryState() const = 0;
22 virtual void SetCurrentMemoryStateForTesting(MemoryState memory_state) = 0;
23 };
24
15 // The proxy of MemoryCoordinator to be accessed from components that are not 25 // The proxy of MemoryCoordinator to be accessed from components that are not
16 // in content/browser e.g. net. 26 // in content/browser e.g. net.
17 class BASE_EXPORT MemoryCoordinatorProxy { 27 class BASE_EXPORT MemoryCoordinatorProxy {
18 public: 28 public:
19 using GetCurrentMemoryStateCallback = base::Callback<MemoryState()>; 29 static MemoryCoordinatorProxy* GetInstance();
20 using SetCurrentMemoryStateCallback = base::Callback<void(MemoryState)>;
21 30
22 static MemoryCoordinatorProxy* GetInstance(); 31 // Sets an implementation of MemoryCoordinator. MemoryCoordinatorProxy doesn't
32 // take the ownership of |coordinator|. It must outlive this proxy.
33 // This should be called before any components starts using this proxy.
34 static void SetMemoryCoordinator(MemoryCoordinator* coordinator);
23 35
24 // Returns the current memory state. 36 // Returns the current memory state.
25 MemoryState GetCurrentMemoryState() const; 37 MemoryState GetCurrentMemoryState() const;
26 38
27 // Sets the current memory state. This function is for testing only. 39 // Sets the current memory state. This function is for testing only.
28 void SetCurrentMemoryStateForTesting(MemoryState memory_state); 40 void SetCurrentMemoryStateForTesting(MemoryState memory_state);
29 41
30 // Sets state-getter callback.
31 void SetGetCurrentMemoryStateCallback(GetCurrentMemoryStateCallback callback);
32
33 // Sets state-setter callback.
34 void SetSetCurrentMemoryStateForTestingCallback(
35 SetCurrentMemoryStateCallback callback);
36
37 private: 42 private:
38 friend struct base::DefaultSingletonTraits<MemoryCoordinatorProxy>; 43 friend struct base::DefaultSingletonTraits<MemoryCoordinatorProxy>;
39 44
40 MemoryCoordinatorProxy(); 45 MemoryCoordinatorProxy();
41 virtual ~MemoryCoordinatorProxy(); 46 virtual ~MemoryCoordinatorProxy();
42 47
43 GetCurrentMemoryStateCallback getter_callback_;
44 SetCurrentMemoryStateCallback setter_callback_;
45
46 DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorProxy); 48 DISALLOW_COPY_AND_ASSIGN(MemoryCoordinatorProxy);
47 }; 49 };
48 50
49 } // namespace base 51 } // namespace base
50 52
51 #endif // BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_ 53 #endif // BASE_MEMORY_MEMORY_COORDINATOR_PROXY_H_
OLDNEW
« no previous file with comments | « no previous file | base/memory/memory_coordinator_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698