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

Side by Side Diff: Source/core/html/ImageDocument.cpp

Issue 683013002: Extract a DOMWindow interface from LocalDOMWindow and use it in the idl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix incorrect assumption Created 6 years, 1 month 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) 2006, 2007, 2008, 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008, 2010 Apple 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 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 14 matching lines...) Expand all
25 #include "config.h" 25 #include "config.h"
26 #include "core/html/ImageDocument.h" 26 #include "core/html/ImageDocument.h"
27 27
28 #include "bindings/core/v8/ExceptionStatePlaceholder.h" 28 #include "bindings/core/v8/ExceptionStatePlaceholder.h"
29 #include "core/HTMLNames.h" 29 #include "core/HTMLNames.h"
30 #include "core/dom/RawDataDocumentParser.h" 30 #include "core/dom/RawDataDocumentParser.h"
31 #include "core/events/EventListener.h" 31 #include "core/events/EventListener.h"
32 #include "core/events/MouseEvent.h" 32 #include "core/events/MouseEvent.h"
33 #include "core/fetch/ImageResource.h" 33 #include "core/fetch/ImageResource.h"
34 #include "core/frame/FrameView.h" 34 #include "core/frame/FrameView.h"
35 #include "core/frame/LocalDOMWindow.h"
35 #include "core/frame/LocalFrame.h" 36 #include "core/frame/LocalFrame.h"
36 #include "core/frame/Settings.h" 37 #include "core/frame/Settings.h"
37 #include "core/html/HTMLBodyElement.h" 38 #include "core/html/HTMLBodyElement.h"
38 #include "core/html/HTMLHeadElement.h" 39 #include "core/html/HTMLHeadElement.h"
39 #include "core/html/HTMLHtmlElement.h" 40 #include "core/html/HTMLHtmlElement.h"
40 #include "core/html/HTMLImageElement.h" 41 #include "core/html/HTMLImageElement.h"
41 #include "core/html/HTMLMetaElement.h" 42 #include "core/html/HTMLMetaElement.h"
42 #include "core/loader/DocumentLoader.h" 43 #include "core/loader/DocumentLoader.h"
43 #include "core/loader/FrameLoader.h" 44 #include "core/loader/FrameLoader.h"
44 #include "core/loader/FrameLoaderClient.h" 45 #include "core/loader/FrameLoaderClient.h"
(...skipping 351 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 } 397 }
397 398
398 bool ImageEventListener::operator==(const EventListener& listener) 399 bool ImageEventListener::operator==(const EventListener& listener)
399 { 400 {
400 if (const ImageEventListener* imageEventListener = ImageEventListener::cast( &listener)) 401 if (const ImageEventListener* imageEventListener = ImageEventListener::cast( &listener))
401 return m_doc == imageEventListener->m_doc; 402 return m_doc == imageEventListener->m_doc;
402 return false; 403 return false;
403 } 404 }
404 405
405 } 406 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698