| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_WIN_H_ | 5 #ifndef CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_WIN_H_ |
| 6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_WIN_H_ | 6 #define CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_WIN_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "chrome/browser/web_applications/web_app.h" | 9 #include "chrome/browser/web_applications/web_app.h" |
| 10 | 10 |
| 11 class Profile; | 11 class Profile; |
| 12 | 12 |
| 13 namespace content { | |
| 14 class WebContents; | |
| 15 } | |
| 16 | |
| 17 namespace extensions { | 13 namespace extensions { |
| 18 class Extension; | 14 class Extension; |
| 19 } | 15 } |
| 20 | 16 |
| 21 namespace gfx { | 17 namespace gfx { |
| 22 class ImageFamily; | 18 class ImageFamily; |
| 23 } | 19 } |
| 24 | 20 |
| 25 namespace web_app { | 21 namespace web_app { |
| 26 | 22 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 49 bool refresh_shell_icon_cache); | 45 bool refresh_shell_icon_cache); |
| 50 | 46 |
| 51 base::FilePath GetIconFilePath(const base::FilePath& web_app_path, | 47 base::FilePath GetIconFilePath(const base::FilePath& web_app_path, |
| 52 const base::string16& title); | 48 const base::string16& title); |
| 53 | 49 |
| 54 } // namespace internals | 50 } // namespace internals |
| 55 | 51 |
| 56 } // namespace web_app | 52 } // namespace web_app |
| 57 | 53 |
| 58 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_WIN_H_ | 54 #endif // CHROME_BROWSER_WEB_APPLICATIONS_WEB_APP_WIN_H_ |
| OLD | NEW |