| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 | 4 |
| 5 #ifndef CHROME_COMMON_PLATFORM_UTIL_H_ | 5 #ifndef CHROME_BROWSER_PLATFORM_UTIL_H_ |
| 6 #define CHROME_COMMON_PLATFORM_UTIL_H_ | 6 #define CHROME_BROWSER_PLATFORM_UTIL_H_ |
| 7 | 7 |
| 8 #include "base/string16.h" | 8 #include "base/string16.h" |
| 9 #include "gfx/native_widget_types.h" | 9 #include "gfx/native_widget_types.h" |
| 10 | 10 |
| 11 class FilePath; | 11 class FilePath; |
| 12 class GURL; | 12 class GURL; |
| 13 | 13 |
| 14 namespace platform_util { | 14 namespace platform_util { |
| 15 | 15 |
| 16 // Show the given file in a file manager. If possible, select the file. | 16 // Show the given file in a file manager. If possible, select the file. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 const string16& title, | 41 const string16& title, |
| 42 const string16& message); | 42 const string16& message); |
| 43 | 43 |
| 44 // Return a human readable modifier for the version string. For a | 44 // Return a human readable modifier for the version string. For a |
| 45 // branded Chrome (not Chromium), this modifier is the channel (dev, | 45 // branded Chrome (not Chromium), this modifier is the channel (dev, |
| 46 // beta, stable). | 46 // beta, stable). |
| 47 string16 GetVersionStringModifier(); | 47 string16 GetVersionStringModifier(); |
| 48 | 48 |
| 49 } | 49 } |
| 50 | 50 |
| 51 #endif // CHROME_COMMON_PLATFORM_UTIL_H_ | 51 #endif // CHROME_BROWSER_PLATFORM_UTIL_H_ |
| OLD | NEW |