| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 #include "sky/engine/core/html/HTMLImportElement.h" | 52 #include "sky/engine/core/html/HTMLImportElement.h" |
| 53 #include "sky/engine/core/html/ime/InputMethodContext.h" | 53 #include "sky/engine/core/html/ime/InputMethodContext.h" |
| 54 #include "sky/engine/core/loader/FrameLoader.h" | 54 #include "sky/engine/core/loader/FrameLoader.h" |
| 55 #include "sky/engine/core/loader/UniqueIdentifier.h" | 55 #include "sky/engine/core/loader/UniqueIdentifier.h" |
| 56 #include "sky/engine/core/page/AutoscrollController.h" | 56 #include "sky/engine/core/page/AutoscrollController.h" |
| 57 #include "sky/engine/core/page/Chrome.h" | 57 #include "sky/engine/core/page/Chrome.h" |
| 58 #include "sky/engine/core/page/EventHandler.h" | 58 #include "sky/engine/core/page/EventHandler.h" |
| 59 #include "sky/engine/core/page/EventWithHitTestResults.h" | 59 #include "sky/engine/core/page/EventWithHitTestResults.h" |
| 60 #include "sky/engine/core/page/FocusController.h" | 60 #include "sky/engine/core/page/FocusController.h" |
| 61 #include "sky/engine/core/page/Page.h" | 61 #include "sky/engine/core/page/Page.h" |
| 62 #include "sky/engine/core/page/TouchDisambiguation.h" | |
| 63 #include "sky/engine/core/rendering/RenderView.h" | 62 #include "sky/engine/core/rendering/RenderView.h" |
| 64 #include "sky/engine/platform/Cursor.h" | 63 #include "sky/engine/platform/Cursor.h" |
| 65 #include "sky/engine/platform/KeyboardCodes.h" | 64 #include "sky/engine/platform/KeyboardCodes.h" |
| 66 #include "sky/engine/platform/Logging.h" | 65 #include "sky/engine/platform/Logging.h" |
| 67 #include "sky/engine/platform/NotImplemented.h" | 66 #include "sky/engine/platform/NotImplemented.h" |
| 68 #include "sky/engine/platform/PlatformGestureEvent.h" | 67 #include "sky/engine/platform/PlatformGestureEvent.h" |
| 69 #include "sky/engine/platform/PlatformKeyboardEvent.h" | 68 #include "sky/engine/platform/PlatformKeyboardEvent.h" |
| 70 #include "sky/engine/platform/PlatformMouseEvent.h" | 69 #include "sky/engine/platform/PlatformMouseEvent.h" |
| 71 #include "sky/engine/platform/PlatformWheelEvent.h" | 70 #include "sky/engine/platform/PlatformWheelEvent.h" |
| 72 #include "sky/engine/platform/TraceEvent.h" | 71 #include "sky/engine/platform/TraceEvent.h" |
| (...skipping 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1273 void WebViewImpl::setVisibilityState(WebPageVisibilityState visibilityState, | 1272 void WebViewImpl::setVisibilityState(WebPageVisibilityState visibilityState, |
| 1274 bool isInitialState) { | 1273 bool isInitialState) { |
| 1275 if (!page()) | 1274 if (!page()) |
| 1276 return; | 1275 return; |
| 1277 | 1276 |
| 1278 ASSERT(visibilityState == WebPageVisibilityStateVisible || visibilityState =
= WebPageVisibilityStateHidden); | 1277 ASSERT(visibilityState == WebPageVisibilityStateVisible || visibilityState =
= WebPageVisibilityStateHidden); |
| 1279 m_page->setVisibilityState(static_cast<PageVisibilityState>(static_cast<int>
(visibilityState)), isInitialState); | 1278 m_page->setVisibilityState(static_cast<PageVisibilityState>(static_cast<int>
(visibilityState)), isInitialState); |
| 1280 } | 1279 } |
| 1281 | 1280 |
| 1282 } // namespace blink | 1281 } // namespace blink |
| OLD | NEW |