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

Side by Side Diff: Source/bindings/core/dart/DartInjectedScriptHostHelper.h

Issue 1532413002: Added Dartium changes onto 45.0.2454.104 (Closed) Base URL: http://src.chromium.org/blink/branches/chromium/2454
Patch Set: Created 5 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 unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2013, Google Inc.
2 // 2 // All rights reserved.
3 // The Chromium Authors can be found at
4 // http://src.chromium.org/svn/trunk/src/AUTHORS
5 // 3 //
6 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
7 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
8 // met: 6 // met:
9 // 7 //
10 // * Redistributions of source code must retain the above copyright 8 // * Redistributions of source code must retain the above copyright
11 // notice, this list of conditions and the following disclaimer. 9 // notice, this list of conditions and the following disclaimer.
12 // * Redistributions in binary form must reproduce the above 10 // * Redistributions in binary form must reproduce the above
13 // copyright notice, this list of conditions and the following disclaimer 11 // copyright notice, this list of conditions and the following disclaimer
14 // in the documentation and/or other materials provided with the 12 // in the documentation and/or other materials provided with the
15 // distribution. 13 // distribution.
16 // * Neither the name of Google Inc. nor the names of its 14 // * Neither the name of Google Inc. nor the names of its
17 // contributors may be used to endorse or promote products derived from 15 // contributors may be used to endorse or promote products derived from
18 // this software without specific prior written permission. 16 // this software without specific prior written permission.
19 // 17 //
20 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 19 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 20 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 21 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 22 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30 #ifndef DartInjectedScriptHostHelper_h
31 #define DartInjectedScriptHostHelper_h
32
33 #include <v8.h>
34
35 namespace blink {
36
37 class DartInjectedScriptHostHelper {
38 public:
39 static v8::Handle<v8::Value> evaluateIfDartContext(v8::Handle<v8::Object> v8 InjectedScriptHost, v8::Handle<v8::String> expression);
40 };
41
42 }
43
44 #endif // DartInjectedScriptHostHelper_h
OLDNEW
« no previous file with comments | « Source/bindings/core/dart/DartInjectedScript.cpp ('k') | Source/bindings/core/dart/DartInjectedScriptHostHelper.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698