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

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.cpp

Issue 2834053003: Split V8Binding (Closed)
Patch Set: Rebase Created 3 years, 7 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2009 Google Inc. All rights reserved. 2 * Copyright (C) 2009 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 #include <memory> 91 #include <memory>
92 #include <utility> 92 #include <utility>
93 93
94 #include "bindings/core/v8/BindingSecurity.h" 94 #include "bindings/core/v8/BindingSecurity.h"
95 #include "bindings/core/v8/DOMWrapperWorld.h" 95 #include "bindings/core/v8/DOMWrapperWorld.h"
96 #include "bindings/core/v8/ExceptionState.h" 96 #include "bindings/core/v8/ExceptionState.h"
97 #include "bindings/core/v8/ScriptController.h" 97 #include "bindings/core/v8/ScriptController.h"
98 #include "bindings/core/v8/ScriptSourceCode.h" 98 #include "bindings/core/v8/ScriptSourceCode.h"
99 #include "bindings/core/v8/ScriptValue.h" 99 #include "bindings/core/v8/ScriptValue.h"
100 #include "bindings/core/v8/SourceLocation.h" 100 #include "bindings/core/v8/SourceLocation.h"
101 #include "bindings/core/v8/V8Binding.h" 101 #include "bindings/core/v8/V8BindingForCore.h"
102 #include "bindings/core/v8/V8GCController.h" 102 #include "bindings/core/v8/V8GCController.h"
103 #include "bindings/core/v8/V8PerIsolateData.h" 103 #include "bindings/core/v8/V8PerIsolateData.h"
104 #include "core/HTMLNames.h" 104 #include "core/HTMLNames.h"
105 #include "core/dom/Document.h" 105 #include "core/dom/Document.h"
106 #include "core/dom/DocumentUserGestureToken.h" 106 #include "core/dom/DocumentUserGestureToken.h"
107 #include "core/dom/IconURL.h" 107 #include "core/dom/IconURL.h"
108 #include "core/dom/MessagePort.h" 108 #include "core/dom/MessagePort.h"
109 #include "core/dom/Node.h" 109 #include "core/dom/Node.h"
110 #include "core/dom/NodeTraversal.h" 110 #include "core/dom/NodeTraversal.h"
111 #include "core/dom/shadow/ShadowRoot.h" 111 #include "core/dom/shadow/ShadowRoot.h"
(...skipping 2463 matching lines...) Expand 10 before | Expand all | Expand 10 after
2575 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { 2575 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const {
2576 return *text_checker_client_; 2576 return *text_checker_client_;
2577 } 2577 }
2578 2578
2579 void WebLocalFrameImpl::SetTextCheckClient( 2579 void WebLocalFrameImpl::SetTextCheckClient(
2580 WebTextCheckClient* text_check_client) { 2580 WebTextCheckClient* text_check_client) {
2581 text_check_client_ = text_check_client; 2581 text_check_client_ = text_check_client;
2582 } 2582 }
2583 2583
2584 } // namespace blink 2584 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebKit.cpp ('k') | third_party/WebKit/Source/web/WebPluginContainerImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698