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

Side by Side Diff: win8/metro_driver/secondary_tile.h

Issue 11198025: Site specific secondary tiles for Windows 8. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Cleanup Created 8 years, 2 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 #ifndef CHROME_BROWSER_UI_METRO_DRIVER_SECONDARY_TILE_H_ 4 #ifndef METRO_DRIVER_SECONDARY_TILE_H_
5 #define CHROME_BROWSER_UI_METRO_DRIVER_SECONDARY_TILE_H_ 5 #define METRO_DRIVER_SECONDARY_TILE_H_
6 6
7 #include "base/string16.h" 7 #include "base/string16.h"
8 #include "third_party/skia/include/core/SkBitmap.h"
8 9
9 extern "C" __declspec(dllexport) 10 extern "C" __declspec(dllexport)
10 BOOL MetroIsPinnedToStartScreen(const string16& url); 11 BOOL MetroIsPinnedToStartScreen(const string16& url);
11 12
12 extern "C" __declspec(dllexport) 13 extern "C" __declspec(dllexport)
13 void MetroTogglePinnedToStartScreen(const string16& title, const string16& url); 14 void MetroUnPinFromStartScreen(const string16& url);
14 15
15 #endif // CHROME_BROWSER_UI_METRO_DRIVER_SECONDARY_TILE_H_ 16 extern "C" __declspec(dllexport)
17 void MetroPinToStartScreen(const string16& title,
18 const string16& url,
19 const SkBitmap* bitmap);
16 20
21 #endif // METRO_DRIVER_SECONDARY_TILE_H_
22
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698