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

Side by Side Diff: third_party/WebKit/public/web/WebFrameClient.h

Issue 2805763004: [System-Keyboard-Lock] Forward navigator functions to RenderFrameHost (Closed)
Patch Set: Resolve review comments Created 3 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) 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 class WebColorChooser; 75 class WebColorChooser;
76 class WebColorChooserClient; 76 class WebColorChooserClient;
77 class WebContentDecryptionModule; 77 class WebContentDecryptionModule;
78 class WebCookieJar; 78 class WebCookieJar;
79 class WebDataSource; 79 class WebDataSource;
80 class WebEncryptedMediaClient; 80 class WebEncryptedMediaClient;
81 class WebExternalPopupMenu; 81 class WebExternalPopupMenu;
82 class WebExternalPopupMenuClient; 82 class WebExternalPopupMenuClient;
83 class WebFileChooserCompletion; 83 class WebFileChooserCompletion;
84 class WebLocalFrame; 84 class WebLocalFrame;
85 class WebKeyLockRequestCompletion;
85 class WebMediaPlayer; 86 class WebMediaPlayer;
86 class WebMediaPlayerClient; 87 class WebMediaPlayerClient;
87 class WebMediaPlayerEncryptedMediaClient; 88 class WebMediaPlayerEncryptedMediaClient;
88 class WebMediaPlayerSource; 89 class WebMediaPlayerSource;
89 class WebMediaSession; 90 class WebMediaSession;
90 class WebServiceWorkerProvider; 91 class WebServiceWorkerProvider;
91 class WebPlugin; 92 class WebPlugin;
92 class WebPresentationClient; 93 class WebPresentationClient;
93 class WebPushClient; 94 class WebPushClient;
94 class WebRTCPeerConnectionHandler; 95 class WebRTCPeerConnectionHandler;
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
753 // Returns the current visibility of the WebFrame. 754 // Returns the current visibility of the WebFrame.
754 virtual WebPageVisibilityState VisibilityState() const { 755 virtual WebPageVisibilityState VisibilityState() const {
755 return kWebPageVisibilityStateVisible; 756 return kWebPageVisibilityStateVisible;
756 } 757 }
757 758
758 // Overwrites the given URL to use an HTML5 embed if possible. 759 // Overwrites the given URL to use an HTML5 embed if possible.
759 // An empty URL is returned if the URL is not overriden. 760 // An empty URL is returned if the URL is not overriden.
760 virtual WebURL OverrideFlashEmbedWithHTML(const WebURL& url) { 761 virtual WebURL OverrideFlashEmbedWithHTML(const WebURL& url) {
761 return WebURL(); 762 return WebURL();
762 } 763 }
764
765 // System Keyboard Lock
766 virtual void RequestKeyLock(const WebVector<WebString>& key_codes,
767 WebKeyLockRequestCompletion* completion) {}
768
769 virtual void CancelKeyLock() {}
763 }; 770 };
764 771
765 } // namespace blink 772 } // namespace blink
766 773
767 #endif 774 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698