Skip to content

Commit 3c08376

Browse files
committed
Renaming some uses of SkyDrive to OneDrive.
1 parent 2d84663 commit 3c08376

File tree

2 files changed

+12
-16
lines changed

2 files changed

+12
-16
lines changed

Release/samples/WindowsLiveAuth/MainPage.xaml.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ void MainPage::DownloadButton_Click(Platform::Object^ sender, Windows::UI::Xaml:
174174
auto ui_ctx = pplx::task_continuation_context::use_current();
175175
utility::string_t path = this->Box1->Text->Data();
176176

177-
// Start by getting the file metadata from skydrive. We need the file name.
177+
// Start by getting the file metadata from OneDrive. We need the file name.
178178
lv_client.get(path)
179179
.then([this](web::json::value file_info)
180180
{

Release/samples/WindowsLiveAuth/live_connect.h

Lines changed: 11 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
*
1919
* live_connect.h
2020
*
21-
* Simple API for connecting to Windows Live services, such as SkyDrive and Hotmail.
21+
* Simple API for connecting to Windows Live services, such as OneDrive and Hotmail.
2222
* Only supported for App Store apps.
2323
*
2424
* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
@@ -70,16 +70,12 @@ namespace web { namespace live {
7070
}
7171

7272
/// <summary>
73-
/// Represents a session connected to Windows Live services like Calendar, Contacts, SkyDrive, and the
73+
/// Represents a session connected to Windows Live services like Calendar, Contacts, OneDrive, and the
7474
/// user profile, by using the Live Connect REST API. It is a thin layer on top of the Casablanca HTTP
7575
/// library, tailored to the usage scenarios for Windows Live clients.
7676
/// </summary>
7777
/// <remarks>
78-
/// See http://msdn.microsoft.com/en-us/live/ for details on using the Live Connect REST API. The
79-
/// 'Interactive SDK' is particularly useful in examining its behavior and capabilities. The REST API
80-
/// reference is found under 'Docs >> Core Concepts'. Examples of user profile scenarios are under
81-
/// 'Docs >> Identity API', SkyDrive under 'Docs >> SkyDrive API', contacts and calendars under
82-
/// 'Docs >> Hotmail API'.
78+
/// See http://msdn.microsoft.com/onedrive/ for details on using the OneDrive REST API.
8379
///
8480
/// Note: when passing resource paths into the functions in this class, it is not necessary to add the
8581
/// leading '/' path character. It will be added automatically when constructing the HTTP request.
@@ -256,9 +252,9 @@ namespace web { namespace live {
256252
}
257253

258254
/// <summary>
259-
/// Download a file from SkyDrive.
255+
/// Download a file from OneDrive.
260256
/// </summary>
261-
/// <param name="file_id">The SkyDrive file id to download.</param>
257+
/// <param name="file_id">The OneDrive file id to download.</param>
262258
/// <param name="stream">A stream into which the contents of the file should be placed.</param>
263259
/// <returns>The size of the downloaded resource.</returns>
264260
/// <remarks></remarks>
@@ -288,9 +284,9 @@ namespace web { namespace live {
288284
}
289285

290286
/// <summary>
291-
/// Download a file from SkyDrive.
287+
/// Download a file from OneDrive.
292288
/// </summary>
293-
/// <param name="file_id">The SkyDrive file id to download.</param>
289+
/// <param name="file_id">The OneDrive file id to download.</param>
294290
/// <param name="file">A StorageFile reference identifying the target for the downloaded data.</param>
295291
/// <returns>The size of the downloaded resource.</returns>
296292
/// <remarks></remarks>
@@ -336,9 +332,9 @@ namespace web { namespace live {
336332
}
337333

338334
/// <summary>
339-
/// Upload a file to SkyDrive.
335+
/// Upload a file to OneDrive.
340336
/// </summary>
341-
/// <param name="path">The path of the file location in SkyDrive. It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
337+
/// <param name="path">The path of the file location in OneDrive. It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
342338
/// <param name="stream">A stream from which data for the file will be read.</param>
343339
/// <param name="content_length">The size of the data to upload.</param>
344340
/// <returns>The JSON value resulting from the request, containing metadata about the uploaded file.</returns>
@@ -362,9 +358,9 @@ namespace web { namespace live {
362358
}
363359

364360
/// <summary>
365-
/// Upload a file to SkyDrive.
361+
/// Upload a file to OneDrive.
366362
/// </summary>
367-
/// <param name="path">The path of the file location in SkyDrive. It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
363+
/// <param name="path">The path of the file location in OneDrive. It should be of the form "folder.NNNNNNNNNN/files/file_name.ext"</param>
368364
/// <param name="file">A StorageFile reference identifying the source of the uploaded data.</param>
369365
/// <param name="content_length">The size of the data to upload.</param>
370366
/// <returns>The JSON value resulting from the request, containing metadata about the uploaded file.</returns>

0 commit comments

Comments
 (0)