Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(604)

Unified Diff: chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h

Issue 105193002: Replace string16 with base::string16. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h
diff --git a/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h b/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h
index 33c8e7b2286f91d7658bdcd344289987b3333bf6..5c87b2d5d231bc04f11b83aae49d0ecf8d5b2625 100644
--- a/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h
+++ b/chrome/browser/chromeos/ui/screen_capture_notification_ui_chromeos.h
@@ -14,14 +14,14 @@ namespace chromeos {
class ScreenCaptureNotificationUIChromeOS : public ScreenCaptureNotificationUI {
public:
// |text| is used to specify the text for the notification.
- explicit ScreenCaptureNotificationUIChromeOS(const string16& text);
+ explicit ScreenCaptureNotificationUIChromeOS(const base::string16& text);
virtual ~ScreenCaptureNotificationUIChromeOS();
// ScreenCaptureNotificationUI overrides.
virtual void OnStarted(const base::Closure& stop_callback) OVERRIDE;
private:
- const string16 text_;
+ const base::string16 text_;
DISALLOW_COPY_AND_ASSIGN(ScreenCaptureNotificationUIChromeOS);
};

Powered by Google App Engine
This is Rietveld 408576698