Searched defs:web_app (Results 1 - 17 of 17) sorted by relevance

/external/chromium_org/chrome/browser/web_applications/
H A Dweb_app_mac.h14 #include "chrome/browser/web_applications/web_app.h"
26 namespace web_app { namespace
123 } // namespace web_app
H A Dweb_app_win.h9 #include "chrome/browser/web_applications/web_app.h"
25 namespace web_app { namespace
48 } // namespace web_app
H A Dupdate_shortcut_worker_win.h9 #include "chrome/browser/web_applications/web_app.h"
19 namespace web_app { namespace
70 web_app::IconInfoList unprocessed_icons_;
73 web_app::ShortcutInfo shortcut_info_;
87 } // namespace web_app
H A Dweb_app_android.cc5 #include "chrome/browser/web_applications/web_app.h"
7 namespace web_app { namespace
37 } // namespace web_app
H A Dweb_app_chromeos.cc5 #include "chrome/browser/web_applications/web_app.h"
7 namespace web_app { namespace
37 } // namespace web_app
H A Dweb_app_linux.cc5 #include "chrome/browser/web_applications/web_app.h"
12 namespace web_app { namespace
79 } // namespace web_app
H A Dupdate_shortcut_worker_win.cc20 #include "chrome/browser/web_applications/web_app.h"
34 namespace web_app { namespace
42 web_app::GetShortcutInfoForTab(web_contents_, &shortcut_info_);
43 web_app::GetIconsInfo(extensions_tab_helper->web_app_info(),
45 file_name_ = web_app::internals::GetSanitizedFileName(shortcut_info_.title);
181 base::FilePath web_app_path = web_app::GetWebAppDataDirectory(
193 web_app::internals::GetIconFilePath(web_app_path, shortcut_info_.title);
194 web_app::internals::CheckAndSaveIcon(icon_file, shortcut_info_.favicon);
202 web_app::GenerateApplicationNameFromURL(shortcut_info_.url)),
243 } // namespace web_app
[all...]
H A Dweb_app.h36 namespace web_app { namespace
263 } // namespace web_app
H A Dweb_app.cc5 #include "chrome/browser/web_applications/web_app.h"
71 base::FilePath GetShortcutDataDir(const web_app::ShortcutInfo& shortcut_info) {
72 return web_app::GetWebAppDataDirectory(shortcut_info.profile_path,
78 web_app::ShortcutCreationReason reason,
79 const web_app::ShortcutLocations& locations,
80 const web_app::ShortcutInfo& shortcut_info,
88 base::IgnoreResult(&web_app::internals::CreatePlatformShortcuts),
95 const web_app::ShortcutInfo& shortcut_info,
100 base::Bind(&web_app::internals::UpdatePlatformShortcuts,
105 void OnImageLoaded(web_app
139 namespace web_app { namespace
[all...]
H A Dweb_app_win.cc136 Append(web_app::internals::GetSanitizedFileName(shortcut_name)).
164 const web_app::ShortcutInfo& shortcut_info,
166 web_app::ShortcutCreationReason creation_reason,
176 web_app::internals::GetIconFilePath(web_app_path, shortcut_info.title);
177 if (!web_app::internals::CheckAndSaveIcon(icon_file, shortcut_info.favicon)) {
206 std::string app_name(web_app::GenerateApplicationNameFromInfo(shortcut_info));
215 web_app::internals::GetSanitizedFileName(shortcut_info.title))
217 if (creation_reason == web_app::SHORTCUT_CREATION_AUTOMATED) {
282 web_app::ShortcutLocations all_shortcut_locations;
289 web_app
381 namespace web_app { namespace
[all...]
/external/chromium_org/chrome/browser/ui/views/apps/
H A Dchrome_native_app_window_views_win.h10 namespace web_app { namespace
30 const web_app::ShortcutInfo& shortcut_info);
/external/chromium_org/chrome/browser/extensions/
H A Dconvert_web_app.cc87 const WebApplicationInfo& web_app,
105 root->SetString(keys::kPublicKey, GenerateKey(web_app.app_url));
106 root->SetString(keys::kName, base::UTF16ToUTF8(web_app.title));
108 root->SetString(keys::kDescription, base::UTF16ToUTF8(web_app.description));
109 root->SetString(keys::kLaunchWebURL, web_app.app_url.spec());
114 for (size_t i = 0; i < web_app.icons.size(); ++i) {
115 std::string size = base::StringPrintf("%i", web_app.icons[i].width);
135 for (size_t i = 0; i < web_app.icons.size(); ++i) {
137 if (web_app.icons[i].data.config() == SkBitmap::kNo_Config)
141 base::StringPrintf("%i.png", web_app
86 ConvertWebAppToExtension( const WebApplicationInfo& web_app, const Time& create_time, const base::FilePath& extensions_dir) argument
[all...]
H A Dconvert_web_app_unittest.cc101 WebApplicationInfo web_app; local
102 web_app.title = base::ASCIIToUTF16("Gearpad");
103 web_app.description =
105 web_app.app_url = GURL("http://aaronboodman.com/gearpad/");
110 web_app.app_url.Resolve(base::StringPrintf("%i.png", sizes[i])));
111 web_app.icons.push_back(GetIconInfo(icon_url, sizes[i]));
115 web_app, GetTestTime(1978, 12, 11, 0, 0, 0, 0),
130 EXPECT_EQ(base::UTF16ToUTF8(web_app.title), extension->name());
131 EXPECT_EQ(base::UTF16ToUTF8(web_app.description), extension->description());
132 EXPECT_EQ(web_app
156 WebApplicationInfo web_app; local
[all...]
H A Dcrx_installer.cc37 #include "chrome/browser/web_applications/web_app.h"
227 void CrxInstaller::InstallWebApp(const WebApplicationInfo& web_app) { argument
232 base::Bind(&CrxInstaller::ConvertWebAppOnFileThread, this, web_app)))
237 const WebApplicationInfo& web_app) {
239 web_app, base::Time::Now(), install_directory_));
236 ConvertWebAppOnFileThread( const WebApplicationInfo& web_app) argument
/external/chromium_org/chrome/browser/apps/drive/
H A Ddrive_app_provider_browsertest.cc130 WebApplicationInfo web_app; local
131 web_app.title = base::ASCIIToUTF16("User installed Url app");
132 web_app.app_url = GURL(url);
139 crx_installer->InstallWebApp(web_app);
/external/chromium_org/chrome/browser/extensions/api/management/
H A Dmanagement_api.cc876 WebApplicationInfo web_app; local
877 web_app.title = base::UTF8ToUTF16(title_);
878 web_app.app_url = launch_url_;
885 web_app.icons.push_back(icon);
888 bookmark_app_helper_.reset(new BookmarkAppHelper(service(), web_app, NULL));
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.mortbay.jetty.server_6.1.23.v201004211559.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 229 milliseconds