| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2011, 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2011, 2012 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "sky/engine/core/frame/LocalFrame.h" | 49 #include "sky/engine/core/frame/LocalFrame.h" |
| 50 #include "sky/engine/core/frame/NewEventHandler.h" | 50 #include "sky/engine/core/frame/NewEventHandler.h" |
| 51 #include "sky/engine/core/frame/Settings.h" | 51 #include "sky/engine/core/frame/Settings.h" |
| 52 #include "sky/engine/core/html/HTMLImportElement.h" | 52 #include "sky/engine/core/html/HTMLImportElement.h" |
| 53 #include "sky/engine/core/loader/FrameLoader.h" | 53 #include "sky/engine/core/loader/FrameLoader.h" |
| 54 #include "sky/engine/core/loader/UniqueIdentifier.h" | 54 #include "sky/engine/core/loader/UniqueIdentifier.h" |
| 55 #include "sky/engine/core/page/EventHandler.h" | 55 #include "sky/engine/core/page/EventHandler.h" |
| 56 #include "sky/engine/core/page/FocusController.h" | 56 #include "sky/engine/core/page/FocusController.h" |
| 57 #include "sky/engine/core/page/Page.h" | 57 #include "sky/engine/core/page/Page.h" |
| 58 #include "sky/engine/core/rendering/RenderView.h" | 58 #include "sky/engine/core/rendering/RenderView.h" |
| 59 #include "sky/engine/platform/Cursor.h" | |
| 60 #include "sky/engine/platform/KeyboardCodes.h" | 59 #include "sky/engine/platform/KeyboardCodes.h" |
| 61 #include "sky/engine/platform/Logging.h" | 60 #include "sky/engine/platform/Logging.h" |
| 62 #include "sky/engine/platform/NotImplemented.h" | 61 #include "sky/engine/platform/NotImplemented.h" |
| 63 #include "sky/engine/platform/TraceEvent.h" | 62 #include "sky/engine/platform/TraceEvent.h" |
| 64 #include "sky/engine/platform/fonts/FontCache.h" | 63 #include "sky/engine/platform/fonts/FontCache.h" |
| 65 #include "sky/engine/platform/graphics/Color.h" | 64 #include "sky/engine/platform/graphics/Color.h" |
| 66 #include "sky/engine/platform/graphics/GraphicsContext.h" | 65 #include "sky/engine/platform/graphics/GraphicsContext.h" |
| 67 #include "sky/engine/platform/graphics/Image.h" | 66 #include "sky/engine/platform/graphics/Image.h" |
| 68 #include "sky/engine/platform/graphics/ImageBuffer.h" | 67 #include "sky/engine/platform/graphics/ImageBuffer.h" |
| 69 #include "sky/engine/public/platform/Platform.h" | 68 #include "sky/engine/public/platform/Platform.h" |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 805 void WebViewImpl::setVisibilityState(WebPageVisibilityState visibilityState, | 804 void WebViewImpl::setVisibilityState(WebPageVisibilityState visibilityState, |
| 806 bool isInitialState) { | 805 bool isInitialState) { |
| 807 if (!page()) | 806 if (!page()) |
| 808 return; | 807 return; |
| 809 | 808 |
| 810 ASSERT(visibilityState == WebPageVisibilityStateVisible || visibilityState =
= WebPageVisibilityStateHidden); | 809 ASSERT(visibilityState == WebPageVisibilityStateVisible || visibilityState =
= WebPageVisibilityStateHidden); |
| 811 m_page->setVisibilityState(static_cast<PageVisibilityState>(static_cast<int>
(visibilityState)), isInitialState); | 810 m_page->setVisibilityState(static_cast<PageVisibilityState>(static_cast<int>
(visibilityState)), isInitialState); |
| 812 } | 811 } |
| 813 | 812 |
| 814 } // namespace blink | 813 } // namespace blink |
| OLD | NEW |