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

Unified Diff: win8/metro_driver/secondary_tile.h

Issue 11280112: UMA for Windows 8 Secondary Tile pinning/unpinning user actions (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: no longer need to share this histogram name constant Created 8 years, 1 month 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 side-by-side diff with in-line comments
Download patch
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..b0d9a7894b7fdcff6518066933afd836423c8fea 100644
--- a/win8/metro_driver/secondary_tile.h
+++ b/win8/metro_driver/secondary_tile.h
@@ -6,18 +6,23 @@
#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,
+ base::win::MetroPinResultCallback callback,
+ void* callback_data);
extern "C" __declspec(dllexport)
void MetroPinToStartScreen(const string16& tile_id,
const string16& title,
const string16& url,
- const FilePath& logo_path);
+ const FilePath& logo_path,
+ base::win::MetroPinResultCallback callback,
+ void* callback_data);
#endif // CHROME_BROWSER_UI_METRO_DRIVER_SECONDARY_TILE_H_

Powered by Google App Engine
This is Rietveld 408576698