| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 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 28 matching lines...) Expand all Loading... |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 PassOwnPtr<FrameHost> FrameHost::create(Page& page) | 41 PassOwnPtr<FrameHost> FrameHost::create(Page& page) |
| 42 { | 42 { |
| 43 return adoptPtr(new FrameHost(page)); | 43 return adoptPtr(new FrameHost(page)); |
| 44 } | 44 } |
| 45 | 45 |
| 46 FrameHost::FrameHost(Page& page) | 46 FrameHost::FrameHost(Page& page) |
| 47 : m_page(page) | 47 : m_page(page) |
| 48 , m_console(PageConsole::create(*this)) | 48 , m_console(PageConsole::create(*this)) |
| 49 , m_pinchViewport(*this) | 49 , m_pinchViewport(adoptPtr(new PinchViewport(*this))) |
| 50 { | 50 { |
| 51 } | 51 } |
| 52 | 52 |
| 53 // Explicitly in the .cpp to avoid default constructor in .h | 53 // Explicitly in the .cpp to avoid default constructor in .h |
| 54 FrameHost::~FrameHost() | 54 FrameHost::~FrameHost() |
| 55 { | 55 { |
| 56 } | 56 } |
| 57 | 57 |
| 58 Settings& FrameHost::settings() const | 58 Settings& FrameHost::settings() const |
| 59 { | 59 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 73 UseCounter& FrameHost::useCounter() const | 73 UseCounter& FrameHost::useCounter() const |
| 74 { | 74 { |
| 75 return m_page.useCounter(); | 75 return m_page.useCounter(); |
| 76 } | 76 } |
| 77 | 77 |
| 78 float FrameHost::deviceScaleFactor() const | 78 float FrameHost::deviceScaleFactor() const |
| 79 { | 79 { |
| 80 return m_page.deviceScaleFactor(); | 80 return m_page.deviceScaleFactor(); |
| 81 } | 81 } |
| 82 | 82 |
| 83 PinchViewport& FrameHost::pinchViewport() | 83 PinchViewport& FrameHost::pinchViewport() const |
| 84 { | 84 { |
| 85 return m_pinchViewport; | 85 return *m_pinchViewport; |
| 86 } | 86 } |
| 87 | 87 |
| 88 } | 88 } |
| OLD | NEW |