Index: chrome/browser/chromeos/extensions/file_manager/private_api_misc.h |
diff --git a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h |
index d6f4a595860947468cc2635c909e9fe5c6b6f231..5adb007dc3bee7e6f0e955efe9563dba7e04b06a 100644 |
--- a/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h |
+++ b/chrome/browser/chromeos/extensions/file_manager/private_api_misc.h |
@@ -160,6 +160,19 @@ class FileBrowserPrivateVisitDesktopFunction |
virtual bool RunSync() OVERRIDE; |
}; |
+// Implements the chrome.fileBrowserPrivate.openInspector method. |
+class FileBrowserPrivateOpenInspectorFunction |
+ : public ChromeSyncExtensionFunction { |
+ public: |
+ DECLARE_EXTENSION_FUNCTION("fileBrowserPrivate.openInspector", |
+ FILEBROWSERPRIVATE_OPENINSPECTOR); |
+ |
+ protected: |
+ virtual ~FileBrowserPrivateOpenInspectorFunction() {} |
+ |
+ virtual bool RunSync() OVERRIDE; |
+}; |
+ |
} // namespace extensions |
#endif // CHROME_BROWSER_CHROMEOS_EXTENSIONS_FILE_MANAGER_PRIVATE_API_MISC_H_ |