Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(153)

Side by Side Diff: third_party/WebKit/Source/web/WebLocalFrameImpl.h

Issue 2712033002: Part 1 Of Renaming FrameLoaderClient to LocalFrameClient. (Closed)
Patch Set: Change all forward declarations of FrameLoaderClient to LocalFrameClient and fix call sites. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
412 WebDevToolsFrontendImpl* devToolsFrontend() { return m_webDevToolsFrontend; } 413 WebDevToolsFrontendImpl* devToolsFrontend() { return m_webDevToolsFrontend; }
413 414
414 WebNode contextMenuNode() const { return m_contextMenuNode.get(); } 415 WebNode contextMenuNode() const { return m_contextMenuNode.get(); }
415 void setContextMenuNode(Node* node) { m_contextMenuNode = node; } 416 void setContextMenuNode(Node* node) { m_contextMenuNode = node; }
416 void clearContextMenuNode() { m_contextMenuNode.clear(); } 417 void clearContextMenuNode() { m_contextMenuNode.clear(); }
417 418
418 419
419 DECLARE_TRACE(); 420 DECLARE_TRACE();
420 421
421 private: 422 private:
422 friend class FrameLoaderClientImpl; 423 friend class LocalFrameClientImpl;
423 424
424 WebLocalFrameImpl(WebTreeScopeType, 425 WebLocalFrameImpl(WebTreeScopeType,
425 WebFrameClient*, 426 WebFrameClient*,
426 blink::InterfaceProvider*, 427 blink::InterfaceProvider*,
427 blink::InterfaceRegistry*); 428 blink::InterfaceRegistry*);
428 WebLocalFrameImpl(WebRemoteFrame*, 429 WebLocalFrameImpl(WebRemoteFrame*,
429 WebFrameClient*, 430 WebFrameClient*,
430 blink::InterfaceProvider*, 431 blink::InterfaceProvider*,
431 blink::InterfaceRegistry*); 432 blink::InterfaceRegistry*);
432 433
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 501
501 DEFINE_TYPE_CASTS(WebLocalFrameImpl, 502 DEFINE_TYPE_CASTS(WebLocalFrameImpl,
502 WebFrame, 503 WebFrame,
503 frame, 504 frame,
504 frame->isWebLocalFrame(), 505 frame->isWebLocalFrame(),
505 frame.isWebLocalFrame()); 506 frame.isWebLocalFrame());
506 507
507 } // namespace blink 508 } // namespace blink
508 509
509 #endif 510 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698