Searched refs:apps (Results 51 - 75 of 169) sorted by relevance

1234567

/external/chromium_org/chrome/browser/resources/app_list/
H A Drecommended_apps.css5 .recommended-apps {
/external/scrypt/
H A DAndroid.mk8 # respective crypto, ssl, and apps directories so
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dpage_list_view.js7 * PageListView manages page list, dot list, switcher buttons and handles apps
50 * A list of all 'apps-page' elements.
151 // Request data on the apps so we can fill them in.
156 // No apps page.
168 this.appsPages = this.pageList.getElementsByClassName('apps-page');
209 // Update apps when online state changes.
308 * Tracks whether apps have been loaded at least once.
315 * Callback invoked by chrome with the apps available.
337 // Clear any existing apps pages and dots.
340 // seems unfortunate to have Chrome send us the entire apps lis
[all...]
H A Dapps_page.css125 .apps-promo-text {
134 .apps-promo-learn-more {
153 .apps-promo-learn-more:hover {
/external/chromium_org/chrome/tools/build/linux/
H A Dchrome-wrapper54 apps="${XDG_DATA_HOME:-$HOME/.local/share}/applications"
55 mkdir -p "$apps"
56 cat > "$apps/$DESKTOP.desktop" << EOF
/external/chromium_org/remoting/webapp/
H A Dwindow_frame.css10 html.apps-v2,
11 html.apps-v2 body {
16 html.apps-v2 body:not(.fullscreen) {
87 html.apps-v2 .window-body {
149 html.apps-v2 body.fullscreen #scroller {
153 html.apps-v2 body.fullscreen .window-body {
/external/chromium_org/apps/
H A Dapp_load_service_factory.cc5 #include "apps/app_load_service_factory.h"
7 #include "apps/app_load_service.h"
16 namespace apps { namespace
62 } // namespace apps
H A Dlauncher.h23 namespace apps { namespace
67 } // namespace apps
H A Dapp_load_service.cc5 #include "apps/app_load_service.h"
7 #include "apps/app_load_service_factory.h"
8 #include "apps/app_restore_service.h"
9 #include "apps/launcher.h"
28 namespace apps { namespace
57 if (apps::AppRestoreService::Get(profile_)->IsAppRestorable(extension_id))
82 return apps::AppLoadServiceFactory::GetForProfile(profile);
149 } // namespace apps
H A Dapp_restore_service.cc5 #include "apps/app_restore_service.h"
7 #include "apps/app_lifetime_monitor_factory.h"
8 #include "apps/app_restore_service_factory.h"
9 #include "apps/launcher.h"
10 #include "apps/saved_files_service.h"
25 namespace apps { namespace
31 // Chromeos always restarts apps, even if it was a regular shutdown.
52 // If we are not restoring apps (e.g., because it is a clean restart), and
71 return apps::AppRestoreServiceFactory::GetForProfile(profile);
142 } // namespace apps
[all...]
/external/chromium_org/chrome/browser/apps/
H A Dephemeral_app_service_factory.cc5 #include "chrome/browser/apps/ephemeral_app_service_factory.h"
7 #include "apps/app_lifetime_monitor_factory.h"
8 #include "chrome/browser/apps/ephemeral_app_service.h"
33 DependsOn(apps::AppLifetimeMonitorFactory::GetInstance());
/external/chromium_org/chrome/browser/chromeos/login/easy_unlock/
H A Dshort_lived_user_context.cc24 apps::AppLifetimeMonitor* app_lifetime_monitor,
/external/chromium_org/chrome/browser/ui/webui/chromeos/login/
H A Dkiosk_app_menu_handler.cc92 KioskAppManager::Apps apps;
93 KioskAppManager::Get()->GetApps(&apps);
96 for (size_t i = 0; i < apps.size(); ++i) {
97 const KioskAppManager::App& app_data = apps[i];
/external/chromium_org/mojo/apps/js/
H A Djs_app.h13 #include "mojo/apps/js/mojo_runner_delegate.h"
17 namespace apps { namespace in namespace:mojo
61 } // namespace apps
H A Dmojo_module.cc5 #include "mojo/apps/js/mojo_module.h"
11 #include "mojo/apps/js/js_app.h"
12 #include "mojo/apps/js/mojo_module.h"
17 namespace apps { namespace in namespace:mojo
46 } // namespace apps
/external/chromium_org/chrome/browser/drive/
H A Ddrive_app_registry.h31 // Drive apps available on the webstore.
63 // Returns if UninstallApp() is allowed for the app. Built-in apps have this
81 std::vector<DriveAppInfo>* apps) const;
83 // Returns the list of all Drive apps installed.
84 void GetAppList(std::vector<DriveAppInfo>* apps) const;
107 // Part of Update(). Runs upon the completion of fetching the Drive apps
/external/chromium_org/chrome/browser/resources/extensions/chromeos/
H A Dkiosk_app_list.js23 * Creates a list for showing kiosk apps.
55 * Loads the given list of apps.
56 * @param {!Array.<!Object>} apps An array of app info objects.
58 setApps: function(apps) {
59 this.dataModel = new ArrayDataModel(apps);
H A Dkiosk_apps.css5 #kiosk-apps-page .checkbox {
83 #kiosk-apps-error-banner {
94 #kiosk-apps-error-banner.visible {
/external/openssl/
H A DAndroid.mk8 # respective crypto, ssl, and apps directories so
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dapps_menu.js6 * @fileoverview Kiosk apps menu implementation.
16 * Creates apps menu button.
33 * Array to hold apps info.
69 * Invoked when apps menu becomes visible.
73 if (!$('apps-header-bar-item').hidden)
136 menuItem.classList.add('apps-menu-item');
146 * Sets apps to be displayed in the apps menu.
147 * @param {!Array.<!Object>} apps An array of app info objects.
149 AppsMenuButton.setApps = function(apps) {
[all...]
/external/chromium_org/chrome/browser/ui/views/apps/app_info_dialog/
H A Dapp_info_permissions_panel.cc5 #include "chrome/browser/ui/views/apps/app_info_dialog/app_info_permissions_panel.h"
10 #include "apps/app_load_service.h"
11 #include "apps/saved_files_service.h"
198 std::vector<apps::SavedFileEntry> retained_file_entries =
199 apps::SavedFilesService::Get(profile_)->GetAllFileEntries(app_->id());
200 for (std::vector<apps::SavedFileEntry>::const_iterator it =
211 apps::SavedFilesService::Get(profile_)->ClearQueue(app_);
212 apps::AppLoadService::Get(profile_)->RestartApplicationIfRunning(app_->id());
/external/valgrind/main/drd/scripts/
H A Drun-splash2207 run_test ${SPLASH2}/codes/apps/ocean/contiguous_partitions/OCEAN -n258
208 #run_test ${SPLASH2}/codes/apps/ocean/non_contiguous_partitions/OCEAN -n258
212 psep=' ' run_test ${SPLASH2}/codes/apps/radiosity/RADIOSITY -batch -room -ae 5000.0 -en 0.050 -bf 0.10
220 cd ${SPLASH2}/codes/apps/raytrace/inputs
232 cd ${SPLASH2}/codes/apps/water-nsquared
238 cd ${SPLASH2}/codes/apps/water-spatial
/external/chromium_org/chrome/browser/extensions/
H A Dextension_special_storage_policy_unittest.cc358 scoped_refptr<Extension> apps[] = { local
370 ASSERT_EQ(arraysize(apps), arraysize(change_flags));
371 for (size_t i = 0; i < arraysize(apps); ++i) {
373 observer.ExpectGrant(apps[i]->id(), change_flags[i]);
374 policy_->GrantRightsForExtension(apps[i].get());
379 for (size_t i = 0; i < arraysize(apps); ++i) {
381 policy_->GrantRightsForExtension(apps[i].get());
386 for (size_t i = 0; i < arraysize(apps); ++i) {
388 observer.ExpectRevoke(apps[i]->id(), change_flags[i]);
389 policy_->RevokeRightsForExtension(apps[
[all...]
/external/chromium_org/chrome/browser/ui/ash/
H A Dmedia_delegate_chromeos.cc64 const extensions::AppWindowRegistry::AppWindowList& apps = local
67 apps.begin();
68 iter != apps.end();
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dchrome_native_app_window_views.h12 namespace apps { namespace
53 apps::AppWindowFrameView* CreateNonStandardAppFrame();

Completed in 3140 milliseconds

1234567