Update to Chromium revision 208345.

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1313 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt
2013-07-18 22:37:02 +00:00
parent 5ccc4f8bfb
commit fdbb62a272
8 changed files with 44 additions and 57 deletions

View File

@@ -8,7 +8,7 @@
#import <Cocoa/Cocoa.h>
#import "base/memory/scoped_nsobject.h"
#import "base/mac/scoped_nsobject.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
@@ -16,7 +16,7 @@
// going away. Is responsible for cleaning itself up.
@interface CefJavaScriptDialogHelper : NSObject<NSAlertDelegate> {
@private
scoped_nsobject<NSAlert> alert_;
base::scoped_nsobject<NSAlert> alert_;
NSTextField* textField_; // WEAK; owned by alert_
// Copies of the fields in CefJavaScriptDialog because they're private.