HomeSort by relevance Sort by last modified time
    Searched refs:EXTENSIONS (Results 1 - 25 of 38) sorted by null

1 2

  /external/chromium_org/components/sync_driver/
user_selectable_sync_type.h 31 EXTENSIONS = 6,
sync_prefs.cc 134 model_set.Put(syncer::EXTENSIONS);
308 case syncer::EXTENSIONS:
414 pref_groups_[syncer::EXTENSIONS].Put(syncer::EXTENSION_SETTINGS);
sync_prefs_unittest.cc 154 if (it.Get() == syncer::EXTENSIONS) {
  /external/chromium_org/chrome/common/extensions/docs/server2/
extensions_paths.py 8 # Extensions-related paths within the Chromium repository.
10 EXTENSIONS = 'extensions/common/'
11 CHROME_EXTENSIONS = 'chrome/common/extensions/'
13 BROWSER_EXTENSIONS = 'extensions/browser/'
14 BROWSER_CHROME_EXTENSIONS = 'chrome/browser/extensions/'
16 EXTENSIONS_API = join(EXTENSIONS, 'api/')
  /external/chromium_org/chrome/browser/sync/glue/
extension_data_type_controller.cc 11 #include "extensions/browser/extension_system.h"
27 DCHECK(type == syncer::EXTENSIONS || type == syncer::APPS);
33 extensions::ExtensionSystem::Get(profile_)->InitForRegularProfile(true);
  /external/chromium_org/chrome/browser/profile_resetter/
profile_resetter.h 41 EXTENSIONS = 1 << 4,
48 COOKIES_AND_SITE_DATA | EXTENSIONS | STARTUP_PAGES | PINNED_TABS |
resettable_settings_snapshot.h 35 EXTENSIONS = 1 << 3,
38 ALL_FIELDS = STARTUP_MODE | HOMEPAGE | DSE_URL | EXTENSIONS | SHORTCUTS,
100 // List of pairs [id, name] for enabled extensions. Always sorted.
profile_resetter.cc 14 #include "chrome/browser/extensions/extension_service.h"
30 #include "extensions/browser/extension_system.h"
31 #include "extensions/browser/management_policy.h"
113 {EXTENSIONS, &ProfileResetter::ResetExtensions},
258 extensions::ExtensionSystem::Get(profile_)->extension_service();
262 MarkAsDone(EXTENSIONS);
resettable_settings_snapshot.cc 25 #include "extensions/browser/extension_registry.h"
80 const extensions::ExtensionSet& enabled_ext =
81 extensions::ExtensionRegistry::Get(profile)->enabled_extensions();
84 for (extensions::ExtensionSet::const_iterator it = enabled_ext.begin();
101 ExtensionList extensions = base::STLSetDifference<ExtensionList>( local
103 enabled_extensions_.swap(extensions);
124 bit_mask |= EXTENSIONS;
186 if (field_mask & ResettableSettingsSnapshot::EXTENSIONS) {
188 const ResettableSettingsSnapshot::ExtensionList& extensions = local
191 extensions.begin(); i != extensions.end(); ++i)
353 const ResettableSettingsSnapshot::ExtensionList& extensions = local
    [all...]
profile_resetter_unittest.cc 12 #include "chrome/browser/extensions/extension_service.h"
13 #include "chrome/browser/extensions/extension_service_test_base.h"
14 #include "chrome/browser/extensions/tab_helper.h"
32 #include "extensions/common/extension.h"
33 #include "extensions/common/manifest_constants.h"
74 " \"extensions\" : {"
92 using extensions::Extension;
93 using extensions::Manifest;
99 class ProfileResetterTest : public extensions::ExtensionServiceTestBase,
136 extensions::ExtensionServiceTestBase::SetUp()
989 base::ListValue* extensions = NULL; local
1077 base::string16 extensions; local
    [all...]
  /external/chromium_org/chrome/browser/extensions/
extension_sync_service.cc 5 #include "chrome/browser/extensions/extension_sync_service.h"
13 #include "chrome/browser/extensions/app_sync_data.h"
14 #include "chrome/browser/extensions/bookmark_app_helper.h"
15 #include "chrome/browser/extensions/extension_service.h"
16 #include "chrome/browser/extensions/extension_sync_data.h"
17 #include "chrome/browser/extensions/extension_sync_service_factory.h"
18 #include "chrome/browser/extensions/extension_util.h"
19 #include "chrome/browser/extensions/launch_util.h"
22 #include "chrome/common/extensions/extension_constants.h"
23 #include "chrome/common/extensions/manifest_handlers/app_launch_info.h
    [all...]
extension_service_unittest.cc 31 #include "chrome/browser/extensions/app_sync_data.h"
32 #include "chrome/browser/extensions/blacklist.h"
33 #include "chrome/browser/extensions/chrome_app_sorting.h"
34 #include "chrome/browser/extensions/component_loader.h"
35 #include "chrome/browser/extensions/crx_installer.h"
36 #include "chrome/browser/extensions/default_apps.h"
37 #include "chrome/browser/extensions/extension_creator.h"
38 #include "chrome/browser/extensions/extension_error_reporter.h"
39 #include "chrome/browser/extensions/extension_error_ui.h"
40 #include "chrome/browser/extensions/extension_management_test_util.h
6125 const Extension* extensions[] = { local
6224 const Extension* extensions[] = { local
    [all...]
  /external/chromium_org/sync/syncable/
model_type.cc 56 case EXTENSIONS:
155 case EXTENSIONS:
262 return EXTENSIONS;
357 set.Put(EXTENSIONS);
450 result.Put(EXTENSIONS);
481 case EXTENSIONS:
482 return "Extensions";
560 case EXTENSIONS:
655 else if (model_type_string == "Extensions")
656 return EXTENSIONS;
    [all...]
nigori_util.cc 260 encrypted_types.Has(EXTENSIONS));
298 encrypted_types.Put(EXTENSIONS);
  /external/chromium_org/sync/util/
data_type_histogram.h 60 case ::syncer::EXTENSIONS: \
61 PER_DATA_TYPE_MACRO("Extensions"); \
  /external/chromium_org/sync/engine/
directory_commit_contribution_unittest.cc 28 CreateTypeRoot(&trans, dir(), EXTENSIONS);
123 CreateUnsyncedItem(&trans, EXTENSIONS, "extension1");
149 CreateUnsyncedItem(&trans, EXTENSIONS, "extension1");
172 CreateUnsyncedItem(&trans, EXTENSIONS, "extension1");
176 DirectoryTypeDebugInfoEmitter emitter2(EXTENSIONS, &type_observers_);
180 DirectoryCommitContribution::Build(dir(), EXTENSIONS, 25, &emitter2));
371 ext1_handle = CreateUnsyncedItem(&trans, EXTENSIONS, "extension1");
375 DirectoryTypeDebugInfoEmitter emitter2(EXTENSIONS, &type_observers_);
379 DirectoryCommitContribution::Build(dir(), EXTENSIONS, 25, &emitter2));
  /external/chromium_org/tools/metrics/actions/
extract_actions.py 55 'extension_metrics_module.cc', # extensions hook for user metrics
384 """Add actions reported by extensions via chrome.metricsPrivate API.
499 def WalkDirectory(root_path, actions, extensions, callback):
507 if ext in extensions:
516 EXTENSIONS = ('.cc', '.mm', '.c', '.m')
520 WalkDirectory(ash_root, actions, EXTENSIONS, GrepForActions)
522 WalkDirectory(chrome_root, actions, EXTENSIONS, GrepForActions)
524 WalkDirectory(content_root, actions, EXTENSIONS, GrepForActions)
527 WalkDirectory(components_root, actions, EXTENSIONS, GrepForActions)
529 WalkDirectory(net_root, actions, EXTENSIONS, GrepForActions
    [all...]
  /frameworks/base/tools/layoutlib/rename_font/
build_font_single.py 65 # A list of extensions to process.
66 EXTENSIONS = ['.ttf', '.otf', '.xml']
75 if extension in EXTENSIONS:
  /external/chromium_org/sync/internal_api/public/base/
model_type.h 70 EXTENSIONS,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 34 import android.provider.Contacts.Extensions;
91 private static final int EXTENSIONS = 14;
216 public static final String EXTENSIONS = "view_v1_extensions";
245 android.provider.Contacts.Extensions.CONTENT_ITEM_TYPE
290 matcher.addURI(authority, "extensions", EXTENSIONS);
291 matcher.addURI(authority, "extensions/#", EXTENSIONS_ID);
312 matcher.addURI(authority, "people/#/extensions", PEOPLE_EXTENSIONS);
313 matcher.addURI(authority, "people/#/extensions/#", PEOPLE_EXTENSIONS_ID);
446 sExtensionProjectionMap.put(android.provider.Contacts.Extensions._ID
    [all...]
  /external/chromium_org/chrome/browser/sync/
profile_sync_components_factory_impl.cc 82 #include "chrome/browser/extensions/api/storage/settings_sync_util.h"
83 #include "chrome/browser/extensions/api/synced_notifications_private/synced_notifications_shim.h"
84 #include "chrome/browser/extensions/extension_sync_service.h"
307 if (!disabled_types.Has(syncer::EXTENSIONS)) {
309 new ExtensionDataTypeController(syncer::EXTENSIONS, this, profile_));
481 case syncer::EXTENSIONS:
485 return extensions::settings_sync_util::GetSyncableService(profile_, type)
profile_sync_components_factory_impl_unittest.cc 57 datatypes.push_back(syncer::EXTENSIONS);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AidlProcessor.java 72 private final static Set<String> EXTENSIONS = Collections.singleton(SdkConstants.EXT_AIDL);
93 return EXTENSIONS;
  /external/chromium_org/sync/internal_api/
base_node.cc 260 DCHECK_EQ(GetModelType(), EXTENSIONS);
  /external/deqp/modules/egl/
teglImageTests.cpp 68 vector<string> extensions; local
69 dpy.getExtensions(extensions);
71 set<string> extSet(extensions.begin(), extensions.end());
106 void checkExtensions (const tcu::egl::Display& dpy, const char* (&extensions)[N])
108 checkExtensions(dpy, &extensions[0], &extensions[N]);
111 #define CHECK_EXTENSIONS(EXTENSIONS) do { static const char* ext[] = EXTENSIONS; checkExtensions(m_eglTestCtx.getDisplay(), ext); } while (deGetFalse())

Completed in 456 milliseconds

1 2