Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1018)

Side by Side Diff: chrome/browser/web_applications/web_app.h

Issue 349713002: Android: Remove events extensions API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/ui/tab_helpers.cc ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_ 5 #ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_
6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_ 6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_
7 7
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 SHORTCUT_CREATION_AUTOMATED, 96 SHORTCUT_CREATION_AUTOMATED,
97 }; 97 };
98 98
99 // Called by GetInfoForApp after fetching the ShortcutInfo and FileHandlersInfo. 99 // Called by GetInfoForApp after fetching the ShortcutInfo and FileHandlersInfo.
100 typedef base::Callback<void(const ShortcutInfo&, 100 typedef base::Callback<void(const ShortcutInfo&,
101 const extensions::FileHandlersInfo&)> InfoCallback; 101 const extensions::FileHandlersInfo&)> InfoCallback;
102 102
103 // Called by UpdateShortcutInfoAndIconForApp after loading the icon. 103 // Called by UpdateShortcutInfoAndIconForApp after loading the icon.
104 typedef base::Callback<void(const ShortcutInfo&)> ShortcutInfoCallback; 104 typedef base::Callback<void(const ShortcutInfo&)> ShortcutInfoCallback;
105 105
106 #if defined(TOOLKIT_VIEWS)
106 // Extracts shortcut info of the given WebContents. 107 // Extracts shortcut info of the given WebContents.
107 void GetShortcutInfoForTab(content::WebContents* web_contents, 108 void GetShortcutInfoForTab(content::WebContents* web_contents,
108 ShortcutInfo* info); 109 ShortcutInfo* info);
110 #endif
109 111
110 // Updates web app shortcut of the WebContents. This function checks and 112 // Updates web app shortcut of the WebContents. This function checks and
111 // updates web app icon and shortcuts if needed. For icon, the check is based 113 // updates web app icon and shortcuts if needed. For icon, the check is based
112 // on MD5 hash of icon image. For shortcuts, it checks the desktop, start menu 114 // on MD5 hash of icon image. For shortcuts, it checks the desktop, start menu
113 // and quick launch (as well as pinned shortcut) for shortcut and only 115 // and quick launch (as well as pinned shortcut) for shortcut and only
114 // updates (recreates) them if they exits. 116 // updates (recreates) them if they exits.
115 void UpdateShortcutForTabContents(content::WebContents* web_contents); 117 void UpdateShortcutForTabContents(content::WebContents* web_contents);
116 118
117 ShortcutInfo ShortcutInfoForExtensionAndProfile( 119 ShortcutInfo ShortcutInfoForExtensionAndProfile(
118 const extensions::Extension* app, 120 const extensions::Extension* app,
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 258
257 // Sanitizes |name| and returns a version of it that is safe to use as an 259 // Sanitizes |name| and returns a version of it that is safe to use as an
258 // on-disk file name . 260 // on-disk file name .
259 base::FilePath GetSanitizedFileName(const base::string16& name); 261 base::FilePath GetSanitizedFileName(const base::string16& name);
260 262
261 } // namespace internals 263 } // namespace internals
262 264
263 } // namespace web_app 265 } // namespace web_app
264 266
265 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_ 267 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_H_
OLDNEW
« no previous file with comments | « chrome/browser/ui/tab_helpers.cc ('k') | chrome/browser/web_applications/web_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698