diff --git a/docs/tutorial/desktop-environment-integration.md b/docs/tutorial/desktop-environment-integration.md
index 2bc440343b..2afeb92a92 100644
--- a/docs/tutorial/desktop-environment-integration.md
+++ b/docs/tutorial/desktop-environment-integration.md
@@ -19,7 +19,7 @@ __JumpList:__
__Application dock menu:__
-
+
To add a file to recent documents, you can use
[app.addRecentDocument][addrecentdocument] API:
@@ -161,16 +161,41 @@ __Progress bar in Unity launcher:__

To set the progress bar for a Window, you can use the
-[BrowserWindow.setProgressBar](setprogressbar) API:
+[BrowserWindow.setProgressBar][setprogressbar] API:
```javascript
var window = new BrowserWindow({...});
window.setProgresssBar(0.5);
```
-[addrecentdocument]:../api/app.md#appaddrecentdocumentpath
-[clearrecentdocuments]:../api/app.md#appclearrecentdocuments
-[setusertaskstasks]:../api/app.md#appsetusertaskstasks
-[setprogressbar]:../api/browser-window.md#browserwindowsetprogressbarprogress
-[app-registration]:http://msdn.microsoft.com/en-us/library/windows/desktop/ee872121(v=vs.85).aspx
-[unity-launcher]:https://help.ubuntu.com/community/UnityLaunchersAndDesktopFiles#Adding_shortcuts_to_a_launcher
+## Represented file of window (OS X)
+
+On OS X a window can set its represented file, so the file's icon can show in
+title bar, and when users Command-Click or Control-Click on the tile a path
+popup will show.
+
+You can also set edited state of a window so the file icon can indicate whether
+the document in this window has been modified.
+
+__Represented file popup menu:__
+
+
+
+To set the represented file of window, you can use the
+[BrowserWindow.setRepresentedFilename][setrepresentedfilename] and
+[BrowserWindow.setDocumentEdited][setdocumentedited] APIs:
+
+```javascript
+var window = new BrowserWindow({...});
+window.setRepresentedFilename('/etc/passwd');
+window.setDocumentEdited(true);
+```
+
+[addrecentdocument]: ../api/app.md#appaddrecentdocumentpath
+[clearrecentdocuments]: ../api/app.md#appclearrecentdocuments
+[setusertaskstasks]: ../api/app.md#appsetusertaskstasks
+[setprogressbar]: ../api/browser-window.md#browserwindowsetprogressbarprogress
+[setrepresentedfilename]: ../api/browser-window.md#browserwindowsetrepresentedfilenamefilename
+[setdocumentedited]: ../api/browser-window.md#browserwindowsetdocumenteditededited
+[app-registration]: http://msdn.microsoft.com/en-us/library/windows/desktop/ee872121(v=vs.85).aspx
+[unity-launcher]: https://help.ubuntu.com/community/UnityLaunchersAndDesktopFiles#Adding_shortcuts_to_a_launcher