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

Side by Side Diff: Source/web/tests/IDBBindingUtilitiesTest.cpp

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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
« no previous file with comments | « Source/web/WorkerFileWriterCallbacksBridge.cpp ('k') | Source/web/tests/PrerenderingTest.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 43
44 using namespace WebCore; 44 using namespace WebCore;
45 using namespace WebKit; 45 using namespace WebKit;
46 46
47 namespace { 47 namespace {
48 48
49 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value, const String& keyPath) 49 PassRefPtr<IDBKey> checkKeyFromValueAndKeyPathInternal(const ScriptValue& value, const String& keyPath)
50 { 50 {
51 IDBKeyPath idbKeyPath(keyPath); 51 IDBKeyPath idbKeyPath(keyPath);
52 EXPECT_TRUE(idbKeyPath.isValid()); 52 EXPECT_TRUE(idbKeyPath.isValid());
53 53
54 return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath); 54 return createIDBKeyFromScriptValueAndKeyPath(0, value, idbKeyPath);
55 } 55 }
56 56
57 void checkKeyPathNullValue(const ScriptValue& value, const String& keyPath) 57 void checkKeyPathNullValue(const ScriptValue& value, const String& keyPath)
58 { 58 {
59 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath); 59 RefPtr<IDBKey> idbKey = checkKeyFromValueAndKeyPathInternal(value, keyPath);
60 ASSERT_FALSE(idbKey.get()); 60 ASSERT_FALSE(idbKey.get());
61 } 61 }
62 62
63 bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath ) 63 bool injectKey(PassRefPtr<IDBKey> key, ScriptValue& value, const String& keyPath )
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz"); 202 checkInjection(IDBKey::createDate(4567), scriptObject, "foo.baz");
203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar"); 203 checkInjection(IDBKey::createDate(4567), scriptObject, "bar");
204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b az"); 204 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "foo.b az");
205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar") ; 205 checkInjection(IDBKey::createArray(IDBKey::KeyArray()), scriptObject, "bar") ;
206 206
207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz" ); 207 checkInjectionFails(IDBKey::createString("zoo"), scriptObject, "foo.bar.baz" );
208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo"); 208 checkInjection(IDBKey::createString("zoo"), scriptObject, "foo.xyz.foo");
209 } 209 }
210 210
211 } // namespace 211 } // namespace
OLDNEW
« no previous file with comments | « Source/web/WorkerFileWriterCallbacksBridge.cpp ('k') | Source/web/tests/PrerenderingTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698