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

  /external/chromium_org/chrome/browser/extensions/
external_component_loader.cc 27 std::string ext_id = GetEnhancedBookmarksExtensionId(); local
28 if (!ext_id.empty()) {
29 prefs_->SetString(ext_id + ".external_update_url",
extension_pref_value_map.h 81 // Set an extension preference |value| for |key| of extension |ext_id|.
86 void SetExtensionPref(const std::string& ext_id,
91 // Remove the extension preference value for |key| of extension |ext_id|.
93 void RemoveExtensionPref(const std::string& ext_id,
130 // Registers the time when an extension |ext_id| is installed.
131 void RegisterExtension(const std::string& ext_id,
135 // Deletes all entries related to extension |ext_id|.
136 void UnregisterExtension(const std::string& ext_id);
140 void SetExtensionState(const std::string& ext_id, bool is_enabled);
157 const std::string& ext_id,
    [all...]
extension_pref_value_map.cc 48 void ExtensionPrefValueMap::SetExtensionPref(const std::string& ext_id,
52 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, scope);
59 const std::string& ext_id,
62 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, scope);
116 void ExtensionPrefValueMap::RegisterExtension(const std::string& ext_id,
119 if (entries_.find(ext_id) == entries_.end()) {
120 entries_[ext_id] = new ExtensionEntry;
123 entries_[ext_id]->install_time = install_time;
126 entries_[ext_id]->enabled = is_enabled;
129 void ExtensionPrefValueMap::UnregisterExtension(const std::string& ext_id) {
230 const std::string& ext_id = winner->first; local
274 const std::string& ext_id = i->first; local
    [all...]
chrome_app_sorting.cc 99 for (extensions::ExtensionIdList::const_iterator ext_id =
100 extension_ids.begin(); ext_id != extension_ids.end(); ++ext_id) {
102 syncer::StringOrdinal page = GetPageOrdinal(*ext_id);
104 *ext_id,
110 DLOG(WARNING) << "Extension " << *ext_id
119 SetPageOrdinal(*ext_id, page);
121 *ext_id, kPrefPageIndexDeprecated, NULL);
126 *ext_id,
135 app_launches_to_convert[page][old_app_launch_index] = &*ext_id;
    [all...]
extension_prefs.cc 868 for (ExtensionIdList::const_iterator ext_id =
869 extension_ids.begin(); ext_id != extension_ids.end(); ++ext_id) {
875 const DictionaryValue* ext = GetExtensionPref(*ext_id);
881 *ext_id, kPrefOldGrantedFullAccess, new ListValue());
898 UpdateExtensionPref(*ext_id, granted_apis, new_apis);
    [all...]
  /external/chromium_org/chrome/test/functional/
extensions.py 35 def CheckExtensionVisible(self, ext_id):
36 """Returns True if |ext_id| exists on page."""
37 return len(self._driver.find_elements_by_id(ext_id)) == 1
39 def SetEnabled(self, ext_id, enabled):
43 ext_id: Extension ID to be enabled or disabled.
44 enabled: Boolean indicating whether |ext_id| is to be enabled or disabled.
48 ext_id)
54 def SetAllowInIncognito(self, ext_id, allowed):
58 ext_id: Extension ID to be enabled or disabled.
59 allowed: Boolean indicating whether |ext_id| is to be allowed o
    [all...]
execute_javascript.py 40 ext_id = self.InstallExtension(dir_path)
43 extension = self._GetExtensionInfoById(self.GetExtensionsInfo(), ext_id)
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_store.h 61 // Sets the content |setting| for |pattern| of extension |ext_id|. The
67 const std::string& ext_id,
75 // Clears all contents settings set by the extension |ext_id|.
76 void ClearContentSettingsForExtension(const std::string& ext_id,
93 // Registers the time when an extension |ext_id| is installed.
94 void RegisterExtension(const std::string& ext_id,
98 // Deletes all entries related to extension |ext_id|.
99 void UnregisterExtension(const std::string& ext_id);
103 void SetExtensionState(const std::string& ext_id, bool is_enabled);
121 const std::string& ext_id,
    [all...]
content_settings_store.cc 94 const std::string& ext_id,
103 OriginIdentifierValueMap* map = GetValueMap(ext_id, scope);
116 NotifyOfContentSettingChanged(ext_id,
121 const std::string& ext_id,
125 ExtensionEntryMap::iterator i = FindEntry(ext_id);
134 entry->id = ext_id;
139 const std::string& ext_id) {
144 ExtensionEntryMap::iterator i = FindEntry(ext_id);
155 NotifyOfContentSettingChanged(ext_id, false);
157 NotifyOfContentSettingChanged(ext_id, true)
    [all...]
content_settings_store_unittest.cc 84 void RegisterExtension(const std::string& ext_id) {
85 store_->RegisterExtension(ext_id, timer_.GetNext(), true);
112 std::string ext_id("my_extension");
113 RegisterExtension(ext_id);
126 EXPECT_CALL(observer, OnContentSettingChanged(ext_id, false));
127 store()->SetExtensionContentSetting(ext_id,
165 EXPECT_CALL(observer, OnContentSettingChanged(ext_id, false));
166 store()->UnregisterExtension(ext_id);
199 std::string ext_id("my_extension");
200 RegisterExtension(ext_id);
    [all...]
  /external/chromium/chrome/browser/extensions/
extension_pref_value_map.h 66 // Set an extension preference |value| for |key| of extension |ext_id|.
71 void SetExtensionPref(const std::string& ext_id,
76 // Remove the extension preference value for |key| of extension |ext_id|.
78 void RemoveExtensionPref(const std::string& ext_id,
104 // Registers the time when an extension |ext_id| is installed.
105 void RegisterExtension(const std::string& ext_id,
109 // Deletes all entries related to extension |ext_id|.
110 void UnregisterExtension(const std::string& ext_id);
114 void SetExtensionState(const std::string& ext_id, bool is_enabled);
130 const PrefValueMap* GetExtensionPrefValueMap(const std::string& ext_id,
    [all...]
extension_pref_value_map.cc 31 void ExtensionPrefValueMap::SetExtensionPref(const std::string& ext_id,
35 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, incognito);
41 void ExtensionPrefValueMap::RemoveExtensionPref(const std::string& ext_id,
44 PrefValueMap* prefs = GetExtensionPrefValueMap(ext_id, incognito);
78 void ExtensionPrefValueMap::RegisterExtension(const std::string& ext_id,
81 if (entries_.find(ext_id) != entries_.end())
82 UnregisterExtension(ext_id);
83 entries_[ext_id] = new ExtensionEntry;
84 entries_[ext_id]->install_time = install_time;
85 entries_[ext_id]->enabled = is_enabled
155 const std::string& ext_id = winner->first; local
173 const std::string& ext_id = i->first; local
    [all...]
extension_prefs.cc     [all...]
  /external/chromium_org/chrome/browser/bookmarks/
enhanced_bookmarks_features.cc 16 std::string ext_id = GetEnhancedBookmarksExtensionId(); local
20 return (feature && feature->IsIdInWhitelist(ext_id));
  /external/chromium_org/chrome/renderer/extensions/
api_activity_logger.cc 46 std::string ext_id = *v8::String::Utf8Value(args[0]); local
72 new ExtensionHostMsg_AddAPIActionToActivityLog(ext_id, params));
75 new ExtensionHostMsg_AddEventToActivityLog(ext_id, params));
  /external/chromium_org/chrome/browser/history/
download_row.cc 35 const std::string& ext_id,
52 by_ext_id(ext_id),
download_row.h 40 const std::string& ext_id,
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ac97_codec.h 490 unsigned short ext_id; /* extended feature identification (register 28) */ member in struct:snd_ac97
534 return (ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_22;
538 return (ac97->ext_id & AC97_EI_AMAP) != 0;
542 return (ac97->ext_id & AC97_EI_SPDIF) != 0;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
ac97_codec.h 490 unsigned short ext_id; /* extended feature identification (register 28) */ member in struct:snd_ac97
534 return (ac97->ext_id & AC97_EI_REV_MASK) >= AC97_EI_REV_22;
538 return (ac97->ext_id & AC97_EI_AMAP) != 0;
542 return (ac97->ext_id & AC97_EI_SPDIF) != 0;
  /external/chromium_org/chrome/browser/chromeos/input_method/
input_method_manager_impl_unittest.cc 996 const std::string ext_id = local
1081 const std::string ext_id = extension_ime_util::GetComponentInputMethodID( local
1119 const std::string ext_id = extension_ime_util::GetComponentInputMethodID( local
    [all...]
  /external/chromium_org/google_apis/gaia/
oauth2_mint_token_flow_unittest.cc 163 std::string ext_id = "ext1"; local
168 OAuth2MintTokenFlow::Parameters(rt, ext_id, client_id, scopes, mode)));
  /external/chromium_org/chrome/browser/extensions/api/downloads/
downloads_api.h 335 const std::string& ext_id,
downloads_api.cc     [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter_unittest.cc 717 std::string ext_id = ext->id(); local
718 ReplaceString(&master_prefs, "placeholder_for_id", ext_id);
757 1, std::make_pair(ext_id, "example")),
    [all...]

Completed in 752 milliseconds