diff options
Diffstat (limited to 'chrome/common/platform_util.h')
-rw-r--r-- | chrome/common/platform_util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/platform_util.h b/chrome/common/platform_util.h index 3886f17..3e0edda 100644 --- a/chrome/common/platform_util.h +++ b/chrome/common/platform_util.h @@ -6,6 +6,7 @@ #define CHROME_COMMON_PLATFORM_UTIL_H_ #include "base/gfx/native_widget_types.h" +#include "base/string16.h" class FilePath; @@ -17,6 +18,9 @@ void ShowItemInFolder(const FilePath& full_path); // Get the top level window for the native view. This can return NULL. gfx::NativeWindow GetTopLevel(gfx::NativeView view); +// Get the title of the window. +string16 GetWindowTitle(gfx::NativeWindow window); + } #endif // CHROME_COMMON_PLATFORM_UTIL_H_ |