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 27 matching lines...) Expand all Loading... |
38 #include "public/platform/WebFileSystemType.h" | 38 #include "public/platform/WebFileSystemType.h" |
39 #include "public/web/WebLocalFrame.h" | 39 #include "public/web/WebLocalFrame.h" |
40 #include "web/FrameLoaderClientImpl.h" | 40 #include "web/FrameLoaderClientImpl.h" |
41 #include "web/UserMediaClientImpl.h" | 41 #include "web/UserMediaClientImpl.h" |
42 #include "web/WebExport.h" | 42 #include "web/WebExport.h" |
43 #include "web/WebFrameImplBase.h" | 43 #include "web/WebFrameImplBase.h" |
44 #include "web/WebFrameWidgetBase.h" | 44 #include "web/WebFrameWidgetBase.h" |
45 #include "web/WebInputMethodControllerImpl.h" | 45 #include "web/WebInputMethodControllerImpl.h" |
46 #include "wtf/Compiler.h" | 46 #include "wtf/Compiler.h" |
47 #include "wtf/text/WTFString.h" | 47 #include "wtf/text/WTFString.h" |
| 48 |
48 #include <memory> | 49 #include <memory> |
49 | 50 |
50 namespace blink { | 51 namespace blink { |
51 | 52 |
52 class ChromePrintContext; | 53 class ChromePrintContext; |
53 class IntSize; | 54 class IntSize; |
54 class KURL; | 55 class KURL; |
55 class ScrollableArea; | 56 class ScrollableArea; |
56 class SharedWorkerRepositoryClientImpl; | 57 class SharedWorkerRepositoryClientImpl; |
57 class TextFinder; | 58 class TextFinder; |
(...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 WebDevToolsFrontendImpl* devToolsFrontend() { return m_webDevToolsFrontend; } | 414 WebDevToolsFrontendImpl* devToolsFrontend() { return m_webDevToolsFrontend; } |
414 | 415 |
415 WebNode contextMenuNode() const { return m_contextMenuNode.get(); } | 416 WebNode contextMenuNode() const { return m_contextMenuNode.get(); } |
416 void setContextMenuNode(Node* node) { m_contextMenuNode = node; } | 417 void setContextMenuNode(Node* node) { m_contextMenuNode = node; } |
417 void clearContextMenuNode() { m_contextMenuNode.clear(); } | 418 void clearContextMenuNode() { m_contextMenuNode.clear(); } |
418 | 419 |
419 | 420 |
420 DECLARE_TRACE(); | 421 DECLARE_TRACE(); |
421 | 422 |
422 private: | 423 private: |
423 friend class FrameLoaderClientImpl; | 424 friend class LocalFrameClientImpl; |
424 | 425 |
425 WebLocalFrameImpl(WebTreeScopeType, | 426 WebLocalFrameImpl(WebTreeScopeType, |
426 WebFrameClient*, | 427 WebFrameClient*, |
427 blink::InterfaceProvider*, | 428 blink::InterfaceProvider*, |
428 blink::InterfaceRegistry*); | 429 blink::InterfaceRegistry*); |
429 WebLocalFrameImpl(WebRemoteFrame*, | 430 WebLocalFrameImpl(WebRemoteFrame*, |
430 WebFrameClient*, | 431 WebFrameClient*, |
431 blink::InterfaceProvider*, | 432 blink::InterfaceProvider*, |
432 blink::InterfaceRegistry*); | 433 blink::InterfaceRegistry*); |
433 | 434 |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
501 | 502 |
502 DEFINE_TYPE_CASTS(WebLocalFrameImpl, | 503 DEFINE_TYPE_CASTS(WebLocalFrameImpl, |
503 WebFrame, | 504 WebFrame, |
504 frame, | 505 frame, |
505 frame->isWebLocalFrame(), | 506 frame->isWebLocalFrame(), |
506 frame.isWebLocalFrame()); | 507 frame.isWebLocalFrame()); |
507 | 508 |
508 } // namespace blink | 509 } // namespace blink |
509 | 510 |
510 #endif | 511 #endif |
OLD | NEW |