| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 5 #ifndef CHROME_BROWSER_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
| 6 #define CHROME_BROWSER_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 6 #define CHROME_BROWSER_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | |
| 11 | 10 |
| 12 #include "chrome/browser/web_applications/web_app.h" | 11 #include "chrome/browser/web_applications/web_app.h" |
| 13 #include "views/controls/label.h" | 12 #include "views/controls/label.h" |
| 14 #include "views/view.h" | 13 #include "views/view.h" |
| 15 #include "views/window/dialog_delegate.h" | 14 #include "views/window/dialog_delegate.h" |
| 16 #include "third_party/skia/include/core/SkBitmap.h" | 15 #include "third_party/skia/include/core/SkBitmap.h" |
| 17 | 16 |
| 18 namespace views { | 17 namespace views { |
| 19 class Checkbox; | 18 class Checkbox; |
| 20 class Label; | 19 class Label; |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 web_app::IconInfoList unprocessed_icons_; | 84 web_app::IconInfoList unprocessed_icons_; |
| 86 | 85 |
| 87 // Pending app icon download tracked by us. | 86 // Pending app icon download tracked by us. |
| 88 class IconDownloadCallbackFunctor; | 87 class IconDownloadCallbackFunctor; |
| 89 IconDownloadCallbackFunctor* pending_download_; | 88 IconDownloadCallbackFunctor* pending_download_; |
| 90 | 89 |
| 91 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); | 90 DISALLOW_COPY_AND_ASSIGN(CreateApplicationShortcutView); |
| 92 }; | 91 }; |
| 93 | 92 |
| 94 #endif // CHROME_BROWSER_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ | 93 #endif // CHROME_BROWSER_VIEWS_CREATE_APPLICATION_SHORTCUT_VIEW_H_ |
| OLD | NEW |