forked from llimllib/chrome-control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMemory.py
30 lines (17 loc) · 806 Bytes
/
Memory.py
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
from enum import Enum
from typing import Any, List
from base import ChromeCommand
PressureLevel = Enum("PressureLevel", "moderate critical")
PressureLevel.__doc__ = "Memory pressure level."
class getDOMCounters(ChromeCommand):
def __init__(self): pass
class setPressureNotificationsSuppressed(ChromeCommand):
"""Enable/disable suppressing memory pressure notifications in all processes."""
def __init__(self, suppressed: bool):
# If true, memory pressure notifications will be suppressed.
self.suppressed = suppressed
class simulatePressureNotification(ChromeCommand):
"""Simulate a memory pressure notification in all processes."""
def __init__(self, level: "PressureLevel"):
# Memory pressure level of the notification.
self.level = level