| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> | 2 * Copyright (C) 1998, 1999 Torben Weis <weis@kde.org> |
| 3 * 1999 Lars Knoll <knoll@kde.org> | 3 * 1999 Lars Knoll <knoll@kde.org> |
| 4 * 1999 Antti Koivisto <koivisto@kde.org> | 4 * 1999 Antti Koivisto <koivisto@kde.org> |
| 5 * 2000 Simon Hausmann <hausmann@kde.org> | 5 * 2000 Simon Hausmann <hausmann@kde.org> |
| 6 * 2000 Stefan Schimanski <1Stein@gmx.de> | 6 * 2000 Stefan Schimanski <1Stein@gmx.de> |
| 7 * 2001 George Staikos <staikos@kde.org> | 7 * 2001 George Staikos <staikos@kde.org> |
| 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. | 8 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All r
ights reserved. |
| 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> | 9 * Copyright (C) 2005 Alexey Proskuryakov <ap@nypop.com> |
| 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) | 10 * Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies) |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 | 32 |
| 33 #include "bindings/core/v8/ScriptController.h" | 33 #include "bindings/core/v8/ScriptController.h" |
| 34 #include "core/editing/Editor.h" | 34 #include "core/editing/Editor.h" |
| 35 #include "core/editing/FrameSelection.h" | 35 #include "core/editing/FrameSelection.h" |
| 36 #include "core/editing/InputMethodController.h" | 36 #include "core/editing/InputMethodController.h" |
| 37 #include "core/editing/SpellChecker.h" | 37 #include "core/editing/SpellChecker.h" |
| 38 #include "core/editing/htmlediting.h" | 38 #include "core/editing/htmlediting.h" |
| 39 #include "core/editing/markup.h" | 39 #include "core/editing/markup.h" |
| 40 #include "core/events/Event.h" | 40 #include "core/events/Event.h" |
| 41 #include "core/fetch/ResourceFetcher.h" | 41 #include "core/fetch/ResourceFetcher.h" |
| 42 #include "core/frame/EventHandlerRegistry.h" | |
| 43 #include "core/frame/FrameConsole.h" | 42 #include "core/frame/FrameConsole.h" |
| 44 #include "core/frame/FrameDestructionObserver.h" | 43 #include "core/frame/FrameDestructionObserver.h" |
| 45 #include "core/frame/FrameHost.h" | 44 #include "core/frame/FrameHost.h" |
| 46 #include "core/frame/FrameView.h" | 45 #include "core/frame/FrameView.h" |
| 47 #include "core/frame/LocalDOMWindow.h" | 46 #include "core/frame/LocalDOMWindow.h" |
| 48 #include "core/frame/Settings.h" | 47 #include "core/frame/Settings.h" |
| 49 #include "core/inspector/ConsoleMessageStorage.h" | 48 #include "core/inspector/ConsoleMessageStorage.h" |
| 50 #include "core/loader/FrameLoaderClient.h" | 49 #include "core/loader/FrameLoaderClient.h" |
| 51 #include "core/loader/MojoLoader.h" | 50 #include "core/loader/MojoLoader.h" |
| 52 #include "core/page/Chrome.h" | 51 #include "core/page/Chrome.h" |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 409 { | 408 { |
| 410 if (!m_host) | 409 if (!m_host) |
| 411 return 0; | 410 return 0; |
| 412 | 411 |
| 413 double ratio = m_host->deviceScaleFactor(); | 412 double ratio = m_host->deviceScaleFactor(); |
| 414 ratio *= pageZoomFactor(); | 413 ratio *= pageZoomFactor(); |
| 415 return ratio; | 414 return ratio; |
| 416 } | 415 } |
| 417 | 416 |
| 418 } // namespace blink | 417 } // namespace blink |
| OLD | NEW |