HomeSort by relevance Sort by last modified time
    Searched refs:property_store (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/base/win/
win_util.h 63 IPropertyStore* property_store,
69 IPropertyStore* property_store,
76 BASE_EXPORT bool SetAppIdForPropertyStore(IPropertyStore* property_store,
win_util.cc 32 // Sets the value of |property_key| to |property_value| in |property_store|.
34 IPropertyStore* property_store,
37 DCHECK(property_store);
39 HRESULT result = property_store->SetValue(property_key, property_value.get());
41 result = property_store->Commit();
134 bool SetBooleanValueForPropertyStore(IPropertyStore* property_store,
143 return SetPropVariantValueForPropertyStore(property_store,
148 bool SetStringValueForPropertyStore(IPropertyStore* property_store,
157 return SetPropVariantValueForPropertyStore(property_store,
162 bool SetAppIdForPropertyStore(IPropertyStore* property_store,
    [all...]
shortcut.cc 130 ScopedComPtr<IPropertyStore> property_store; local
131 if (FAILED(property_store.QueryFrom(i_shell_link)) || !property_store.get())
135 !SetAppIdForPropertyStore(property_store, properties.app_id.c_str())) {
139 !SetBooleanValueForPropertyStore(property_store,
  /external/chromium/base/win/
win_util.cc 103 bool SetAppIdForPropertyStore(IPropertyStore* property_store,
105 DCHECK(property_store);
116 HRESULT result = property_store->SetValue(PKEY_AppUserModel_ID,
119 result = property_store->Commit();
win_util.h 65 BASE_API bool SetAppIdForPropertyStore(IPropertyStore* property_store,
  /external/chromium_org/base/test/
test_shortcut_win.cc 120 ScopedComPtr<IPropertyStore> property_store; local
121 EXPECT_TRUE(SUCCEEDED(hr = property_store.QueryFrom(i_shell_link)));
127 EXPECT_EQ(S_OK, property_store->GetValue(PKEY_AppUserModel_ID,
143 EXPECT_EQ(S_OK, property_store->GetValue(PKEY_AppUserModel_IsDualMode,
  /external/chromium_org/chrome/browser/
shell_integration_win.cc 443 base::win::ScopedComPtr<IPropertyStore> property_store; local
445 if (FAILED(property_store.QueryFrom(shell_link)) ||
446 property_store->GetValue(PKEY_AppUserModel_ID,
474 if (property_store->GetValue(PKEY_AppUserModel_IsDualMode,
jumplist_win.cc 200 base::win::ScopedComPtr<IPropertyStore> property_store; local
201 result = link.QueryInterface(property_store.Receive());
216 result = property_store->SetValue(PKEY_Title, property_title.get());
220 result = property_store->Commit();
  /external/chromium/chrome/browser/
shell_integration_win.cc 251 base::win::ScopedComPtr<IPropertyStore> property_store; local
252 if (FAILED(property_store.QueryFrom(shell_link)))
257 if (FAILED(property_store->GetValue(PKEY_AppUserModel_ID,
jumplist_win.cc 223 base::win::ScopedComPtr<IPropertyStore> property_store; local
224 result = link.QueryInterface(property_store.Receive());
233 result = property_store->SetValue(PKEY_Title, property_title.Get());
237 result = property_store->Commit();
  /external/chromium/base/
file_util_win.cc 446 base::win::ScopedComPtr<IPropertyStore> property_store; local
447 if (FAILED(property_store.QueryFrom(i_shell_link)))
450 if (!base::win::SetAppIdForPropertyStore(property_store, app_id))
497 base::win::ScopedComPtr<IPropertyStore> property_store; local
498 if (FAILED(property_store.QueryFrom(i_shell_link)))
501 if (!base::win::SetAppIdForPropertyStore(property_store, app_id))
    [all...]

Completed in 1031 milliseconds