| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 #include "core/loader/FrameLoader.h" | 153 #include "core/loader/FrameLoader.h" |
| 154 #include "core/loader/HistoryItem.h" | 154 #include "core/loader/HistoryItem.h" |
| 155 #include "core/loader/MixedContentChecker.h" | 155 #include "core/loader/MixedContentChecker.h" |
| 156 #include "core/loader/NavigationScheduler.h" | 156 #include "core/loader/NavigationScheduler.h" |
| 157 #include "core/page/FocusController.h" | 157 #include "core/page/FocusController.h" |
| 158 #include "core/page/FrameTree.h" | 158 #include "core/page/FrameTree.h" |
| 159 #include "core/page/Page.h" | 159 #include "core/page/Page.h" |
| 160 #include "core/page/PrintContext.h" | 160 #include "core/page/PrintContext.h" |
| 161 #include "core/paint/PaintLayer.h" | 161 #include "core/paint/PaintLayer.h" |
| 162 #include "core/paint/TransformRecorder.h" | 162 #include "core/paint/TransformRecorder.h" |
| 163 #include "core/style/StyleInheritedData.h" | |
| 164 #include "core/timing/DOMWindowPerformance.h" | 163 #include "core/timing/DOMWindowPerformance.h" |
| 165 #include "core/timing/Performance.h" | 164 #include "core/timing/Performance.h" |
| 166 #include "platform/ScriptForbiddenScope.h" | 165 #include "platform/ScriptForbiddenScope.h" |
| 167 #include "platform/UserGestureIndicator.h" | 166 #include "platform/UserGestureIndicator.h" |
| 168 #include "platform/WebFrameScheduler.h" | 167 #include "platform/WebFrameScheduler.h" |
| 169 #include "platform/clipboard/ClipboardUtilities.h" | 168 #include "platform/clipboard/ClipboardUtilities.h" |
| 170 #include "platform/fonts/FontCache.h" | 169 #include "platform/fonts/FontCache.h" |
| 171 #include "platform/graphics/Color.h" | 170 #include "platform/graphics/Color.h" |
| 172 #include "platform/graphics/GraphicsContext.h" | 171 #include "platform/graphics/GraphicsContext.h" |
| 173 #include "platform/graphics/GraphicsLayerClient.h" | 172 #include "platform/graphics/GraphicsLayerClient.h" |
| (...skipping 2401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2575 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { | 2574 TextCheckerClient& WebLocalFrameImpl::GetTextCheckerClient() const { |
| 2576 return *text_checker_client_; | 2575 return *text_checker_client_; |
| 2577 } | 2576 } |
| 2578 | 2577 |
| 2579 void WebLocalFrameImpl::SetTextCheckClient( | 2578 void WebLocalFrameImpl::SetTextCheckClient( |
| 2580 WebTextCheckClient* text_check_client) { | 2579 WebTextCheckClient* text_check_client) { |
| 2581 text_check_client_ = text_check_client; | 2580 text_check_client_ = text_check_client; |
| 2582 } | 2581 } |
| 2583 | 2582 |
| 2584 } // namespace blink | 2583 } // namespace blink |
| OLD | NEW |