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

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

Issue 1865813002: Remove RawPtr from Source/web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 4 years, 8 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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 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 28 matching lines...) Expand all
39 #include "wtf/RefPtr.h" 39 #include "wtf/RefPtr.h"
40 40
41 namespace blink { 41 namespace blink {
42 42
43 class Element; 43 class Element;
44 class LocalFrame; 44 class LocalFrame;
45 class WebViewImpl; 45 class WebViewImpl;
46 46
47 class FullscreenController final : public GarbageCollected<FullscreenController> { 47 class FullscreenController final : public GarbageCollected<FullscreenController> {
48 public: 48 public:
49 static RawPtr<FullscreenController> create(WebViewImpl*); 49 static FullscreenController* create(WebViewImpl*);
50 50
51 void didEnterFullScreen(); 51 void didEnterFullScreen();
52 void didExitFullScreen(); 52 void didExitFullScreen();
53 53
54 void enterFullScreenForElement(Element*); 54 void enterFullScreenForElement(Element*);
55 void exitFullScreenForElement(Element*); 55 void exitFullScreenForElement(Element*);
56 56
57 bool isFullscreen() { return m_fullScreenFrame; } 57 bool isFullscreen() { return m_fullScreenFrame; }
58 58
59 void updateSize(); 59 void updateSize();
(...skipping 18 matching lines...) Expand all
78 78
79 // If set, the WebView is in fullscreen mode for an element in this frame. 79 // If set, the WebView is in fullscreen mode for an element in this frame.
80 Member<LocalFrame> m_fullScreenFrame; 80 Member<LocalFrame> m_fullScreenFrame;
81 81
82 bool m_isCancelingFullScreen; 82 bool m_isCancelingFullScreen;
83 }; 83 };
84 84
85 } // namespace blink 85 } // namespace blink
86 86
87 #endif 87 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/FrameLoaderClientImpl.cpp ('k') | third_party/WebKit/Source/web/FullscreenController.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698