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

Side by Side Diff: Source/WebKit/chromium/tests/IDBBindingUtilitiesTest.cpp

Issue 14323004: Make Frame's ScriptController an OwnPtr and remove the #include (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix Created 7 years, 8 months 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2011 Google Inc. All rights reserved. 2 * Copyright (C) 2011 Google Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 7 *
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 12 matching lines...) Expand all
23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #include "config.h" 26 #include "config.h"
27 #include "Document.h" 27 #include "Document.h"
28 #include "Frame.h" 28 #include "Frame.h"
29 #include "FrameTestHelpers.h" 29 #include "FrameTestHelpers.h"
30 #include "IDBBindingUtilities.h" 30 #include "IDBBindingUtilities.h"
31 #include "IDBKey.h" 31 #include "IDBKey.h"
32 #include "IDBKeyPath.h" 32 #include "IDBKeyPath.h"
33 #include "ScriptController.h"
33 #include "V8Binding.h" 34 #include "V8Binding.h"
34 #include "V8PerIsolateData.h" 35 #include "V8PerIsolateData.h"
35 #include "V8Utilities.h" 36 #include "V8Utilities.h"
36 #include "WebFrame.h" 37 #include "WebFrame.h"
37 #include "WebFrameImpl.h" 38 #include "WebFrameImpl.h"
38 #include "WebView.h" 39 #include "WebView.h"
39 #include "WorldContextHandle.h" 40 #include "WorldContextHandle.h"
40 41
41 #include <gtest/gtest.h> 42 #include <gtest/gtest.h>
42 #include <wtf/Vector.h> 43 #include <wtf/Vector.h>
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); 203 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz");
203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); 204 checkInjection(IDBKey::createDate(4567), scriptObject, "bar");
204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b az"); 205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b az");
205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar") ; 206 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar") ;
206 207
207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz" ); 208 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz" );
208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); 209 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo");
209 } 210 }
210 211
211 } // namespace 212 } // namespace
OLDNEW
« no previous file with comments | « Source/WebKit/chromium/src/WebPluginContainerImpl.cpp ('k') | Source/WebKit/chromium/tests/IDBRequestTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698