| Index: win8/metro_driver/secondary_tile.h
|
| diff --git a/win8/metro_driver/secondary_tile.h b/win8/metro_driver/secondary_tile.h
|
| index caee7e816d732f9033e949eb41ce5cf59f308cf5..457a23ed0f886a8d6069030d98dd79e01fb0b721 100644
|
| --- a/win8/metro_driver/secondary_tile.h
|
| +++ b/win8/metro_driver/secondary_tile.h
|
| @@ -6,18 +6,22 @@
|
|
|
| #include "base/file_path.h"
|
| #include "base/string16.h"
|
| +#include "base/win/metro.h"
|
|
|
| extern "C" __declspec(dllexport)
|
| BOOL MetroIsPinnedToStartScreen(const string16& tile_id);
|
|
|
| extern "C" __declspec(dllexport)
|
| -void MetroUnPinFromStartScreen(const string16& tile_id);
|
| +void MetroUnPinFromStartScreen(
|
| + const string16& tile_id,
|
| + const base::win::MetroPinUmaResultCallback& callback);
|
|
|
| extern "C" __declspec(dllexport)
|
| -void MetroPinToStartScreen(const string16& tile_id,
|
| - const string16& title,
|
| - const string16& url,
|
| - const FilePath& logo_path);
|
| +void MetroPinToStartScreen(
|
| + const string16& tile_id,
|
| + const string16& title,
|
| + const string16& url,
|
| + const FilePath& logo_path,
|
| + const base::win::MetroPinUmaResultCallback& callback);
|
|
|
| #endif // CHROME_BROWSER_UI_METRO_DRIVER_SECONDARY_TILE_H_
|
| -
|
|
|