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

Unified Diff: interface.cc

Issue 6598074: DoAutomaticFreeDiskSpaceControl() introduced (Closed) Base URL: ssh://git@gitrw.chromium.org:9222/cryptohome.git@master
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « interface.h ('k') | make_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: interface.cc
diff --git a/interface.cc b/interface.cc
index 7add74834c5474d913b2a8abdbedbab50d3ba7ac..ad115ba03b8ab03f18c2bb412305a32b05542a3e 100644
--- a/interface.cc
+++ b/interface.cc
@@ -157,6 +157,17 @@ gboolean cryptohome_async_remove_tracked_subdirectories(Cryptohome *self,
GError **error) {
CRYPTOHOME_WRAP_METHOD(AsyncRemoveTrackedSubdirectories, OUT_async_id);
}
+gboolean cryptohome_do_automatic_free_disk_space_control(Cryptohome *self,
+ gboolean *OUT_result,
+ GError **error) {
+ CRYPTOHOME_WRAP_METHOD(DoAutomaticFreeDiskSpaceControl, OUT_result);
+}
+gboolean cryptohome_async_do_automatic_free_disk_space_control(
+ Cryptohome *self,
+ gint *OUT_async_id,
+ GError **error) {
+ CRYPTOHOME_WRAP_METHOD(AsyncDoAutomaticFreeDiskSpaceControl, OUT_async_id);
+}
gboolean cryptohome_tpm_is_ready(Cryptohome *self,
gboolean *OUT_ready,
GError **error) {
« no previous file with comments | « interface.h ('k') | make_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698