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

Side by Side Diff: Source/core/frame/RemoteDOMWindow.cpp

Issue 910983005: Decouple performance() from LocalDOMWindow (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 10 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 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "config.h" 5 #include "config.h"
6 #include "core/frame/RemoteDOMWindow.h" 6 #include "core/frame/RemoteDOMWindow.h"
7 7
8 #include "bindings/core/v8/SerializedScriptValue.h" 8 #include "bindings/core/v8/SerializedScriptValue.h"
9 #include "core/css/CSSRuleList.h" 9 #include "core/css/CSSRuleList.h"
10 #include "core/css/CSSStyleDeclaration.h" 10 #include "core/css/CSSStyleDeclaration.h"
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 ASSERT_NOT_REACHED(); 202 ASSERT_NOT_REACHED();
203 return 0; 203 return 0;
204 } 204 }
205 205
206 Console* RemoteDOMWindow::console() const 206 Console* RemoteDOMWindow::console() const
207 { 207 {
208 ASSERT_NOT_REACHED(); 208 ASSERT_NOT_REACHED();
209 return 0; 209 return 0;
210 } 210 }
211 211
212 Performance* RemoteDOMWindow::performance() const
213 {
214 ASSERT_NOT_REACHED();
215 return 0;
216 }
217
218 DOMWindowCSS* RemoteDOMWindow::css() const 212 DOMWindowCSS* RemoteDOMWindow::css() const
219 { 213 {
220 ASSERT_NOT_REACHED(); 214 ASSERT_NOT_REACHED();
221 return 0; 215 return 0;
222 } 216 }
223 217
224 DOMSelection* RemoteDOMWindow::getSelection() 218 DOMSelection* RemoteDOMWindow::getSelection()
225 { 219 {
226 ASSERT_NOT_REACHED(); 220 ASSERT_NOT_REACHED();
227 return 0; 221 return 0;
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 { 358 {
365 return String(); 359 return String();
366 } 360 }
367 361
368 RemoteDOMWindow::RemoteDOMWindow(RemoteFrame& frame) 362 RemoteDOMWindow::RemoteDOMWindow(RemoteFrame& frame)
369 : m_frame(&frame) 363 : m_frame(&frame)
370 { 364 {
371 } 365 }
372 366
373 } // namespace blink 367 } // namespace blink
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698