Searched defs:change_flags (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/storage/browser/quota/
H A Dspecial_storage_policy.cc23 void SpecialStoragePolicy::NotifyGranted(const GURL& origin, int change_flags) { argument
25 FOR_EACH_OBSERVER(Observer, observers_, OnGranted(origin, change_flags));
28 void SpecialStoragePolicy::NotifyRevoked(const GURL& origin, int change_flags) { argument
30 FOR_EACH_OBSERVER(Observer, observers_, OnRevoked(origin, change_flags));
H A Dusage_tracker.cc637 int change_flags) {
639 if (change_flags & SpecialStoragePolicy::STORAGE_UNLIMITED) {
654 int change_flags) {
656 if (change_flags & SpecialStoragePolicy::STORAGE_UNLIMITED) {
636 OnGranted(const GURL& origin, int change_flags) argument
653 OnRevoked(const GURL& origin, int change_flags) argument
/external/chromium_org/content/public/test/
H A Dmock_special_storage_policy.h76 void NotifyGranted(const GURL& origin, int change_flags) { argument
77 SpecialStoragePolicy::NotifyGranted(origin, change_flags);
80 void NotifyRevoked(const GURL& origin, int change_flags) { argument
81 SpecialStoragePolicy::NotifyRevoked(origin, change_flags);
/external/chromium_org/chrome/browser/extensions/
H A Dextension_special_storage_policy.cc116 int change_flags = 0; local
120 change_flags |= SpecialStoragePolicy::STORAGE_PROTECTED;
128 change_flags |= SpecialStoragePolicy::STORAGE_UNLIMITED;
138 if (change_flags) {
140 change_flags);
156 int change_flags = 0; local
160 change_flags |= SpecialStoragePolicy::STORAGE_PROTECTED;
168 change_flags |= SpecialStoragePolicy::STORAGE_UNLIMITED;
178 if (change_flags) {
180 change_flags);
197 NotifyGranted( const GURL& origin, int change_flags) argument
210 NotifyRevoked( const GURL& origin, int change_flags) argument
[all...]
H A Dextension_special_storage_policy_unittest.cc39 int change_flags) OVERRIDE {
42 EXPECT_EQ(expected_change_flags_, change_flags);
47 int change_flags) OVERRIDE {
50 EXPECT_EQ(expected_change_flags_, change_flags);
60 int change_flags) {
63 expected_change_flags_ = change_flags;
67 int change_flags) {
70 expected_change_flags_ = change_flags;
363 int change_flags[] = { local
370 ASSERT_EQ(arraysize(apps), arraysize(change_flags));
59 ExpectGrant(const std::string& extension_id, int change_flags) argument
66 ExpectRevoke(const std::string& extension_id, int change_flags) argument
[all...]

Completed in 2651 milliseconds