OLD | NEW |
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 BASE_WIN_METRO_H_ | 5 #ifndef BASE_WIN_METRO_H_ |
6 #define BASE_WIN_METRO_H_ | 6 #define BASE_WIN_METRO_H_ |
7 | 7 |
8 #include <windows.h> | 8 #include <windows.h> |
9 #include <wpcapi.h> | 9 #include <wpcapi.h> |
10 | 10 |
11 #include "base/base_export.h" | 11 #include "base/base_export.h" |
12 #include "base/callback.h" | 12 #include "base/callback.h" |
13 #include "base/files/file_path.h" | 13 #include "base/files/file_path.h" |
14 #include "base/string16.h" | 14 #include "base/strings/string16.h" |
15 | 15 |
16 namespace base { | 16 namespace base { |
17 namespace win { | 17 namespace win { |
18 | 18 |
19 // Identifies the type of the metro launch. | 19 // Identifies the type of the metro launch. |
20 enum MetroLaunchType { | 20 enum MetroLaunchType { |
21 METRO_LAUNCH, | 21 METRO_LAUNCH, |
22 METRO_SEARCH, | 22 METRO_SEARCH, |
23 METRO_SHARE, | 23 METRO_SHARE, |
24 METRO_FILE, | 24 METRO_FILE, |
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 | 130 |
131 // Function to un-pin a site-specific tile (bookmark) from the start screen. | 131 // Function to un-pin a site-specific tile (bookmark) from the start screen. |
132 typedef void (*MetroUnPinFromStartScreen)( | 132 typedef void (*MetroUnPinFromStartScreen)( |
133 const string16& title_id, | 133 const string16& title_id, |
134 const MetroPinUmaResultCallback& callback); | 134 const MetroPinUmaResultCallback& callback); |
135 | 135 |
136 } // namespace win | 136 } // namespace win |
137 } // namespace base | 137 } // namespace base |
138 | 138 |
139 #endif // BASE_WIN_METRO_H_ | 139 #endif // BASE_WIN_METRO_H_ |
OLD | NEW |