OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 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 WEBKIT_GLUE_MEMORY_USAGE_H_ | |
6 #define WEBKIT_GLUE_MEMORY_USAGE_H_ | |
7 | |
8 #include <cstring> | |
9 | |
10 #include "webkit/glue/webkit_glue_export.h" | |
11 | |
12 namespace webkit_glue { | |
13 | |
14 WEBKIT_GLUE_EXPORT size_t memoryUsageKB(); | |
Charlie Reis
2013/01/14 19:59:31
Presumably you're accounting for the fact that it'
marja
2013/01/14 20:17:01
Yes, we're not comparing these values across platf
| |
15 | |
16 } // namespace webkit_glue | |
17 | |
18 #endif // WEBKIT_GLUE_MEMORY_USAGE_H_ | |
OLD | NEW |