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

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

Issue 776693002: Clean forward declaration in public (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix fakewebplugin Created 6 years 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
« no previous file with comments | « public/web/WebFrame.h ('k') | public/web/WebLocalFrame.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 namespace blink { 55 namespace blink {
56 56
57 class WebApplicationCacheHost; 57 class WebApplicationCacheHost;
58 class WebApplicationCacheHostClient; 58 class WebApplicationCacheHostClient;
59 class WebCachedURLRequest; 59 class WebCachedURLRequest;
60 class WebColorChooser; 60 class WebColorChooser;
61 class WebColorChooserClient; 61 class WebColorChooserClient;
62 class WebContentDecryptionModule; 62 class WebContentDecryptionModule;
63 class WebCookieJar; 63 class WebCookieJar;
64 class WebDataSource; 64 class WebDataSource;
65 class WebDOMEvent;
66 class WebExternalPopupMenu; 65 class WebExternalPopupMenu;
67 class WebExternalPopupMenuClient; 66 class WebExternalPopupMenuClient;
68 class WebFormElement; 67 class WebFormElement;
69 class WebGeolocationClient; 68 class WebGeolocationClient;
70 class WebMediaPlayer; 69 class WebMediaPlayer;
71 class WebMediaPlayerClient; 70 class WebMediaPlayerClient;
72 class WebMIDIClient; 71 class WebMIDIClient;
73 class WebNotificationPermissionCallback; 72 class WebNotificationPermissionCallback;
74 class WebServiceWorkerProvider; 73 class WebServiceWorkerProvider;
75 class WebServiceWorkerProviderClient;
76 class WebSocketHandle; 74 class WebSocketHandle;
77 class WebNode;
78 class WebPlugin; 75 class WebPlugin;
79 class WebPluginPlaceholder; 76 class WebPluginPlaceholder;
80 class WebPushClient; 77 class WebPushClient;
81 class WebRTCPeerConnectionHandler; 78 class WebRTCPeerConnectionHandler;
82 class WebScreenOrientationClient; 79 class WebScreenOrientationClient;
83 class WebSharedWorker;
84 class WebSharedWorkerClient;
85 class WebSpeechRecognizer; 80 class WebSpeechRecognizer;
86 class WebString; 81 class WebString;
87 class WebURL; 82 class WebURL;
88 class WebURLLoader;
89 class WebURLResponse; 83 class WebURLResponse;
90 class WebUserMediaClient; 84 class WebUserMediaClient;
91 class WebWorkerPermissionClientProxy; 85 class WebWorkerPermissionClientProxy;
92 struct WebColorSuggestion; 86 struct WebColorSuggestion;
93 struct WebConsoleMessage; 87 struct WebConsoleMessage;
94 struct WebContextMenuData; 88 struct WebContextMenuData;
95 struct WebPluginParams; 89 struct WebPluginParams;
96 struct WebPopupMenuInfo; 90 struct WebPopupMenuInfo;
97 struct WebRect; 91 struct WebRect;
98 struct WebSize;
99 struct WebTransitionElementData; 92 struct WebTransitionElementData;
100 struct WebURLError; 93 struct WebURLError;
101 94
102 class WebFrameClient { 95 class WebFrameClient {
103 public: 96 public:
104 // Factory methods ----------------------------------------------------- 97 // Factory methods -----------------------------------------------------
105 98
106 // May return null. 99 // May return null.
107 virtual WebPluginPlaceholder* createPluginPlaceholder(WebLocalFrame*, const WebPluginParams&) { return 0; } 100 virtual WebPluginPlaceholder* createPluginPlaceholder(WebLocalFrame*, const WebPluginParams&) { return 0; }
108 101
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
599 // Access the embedder API for speech recognition services. 592 // Access the embedder API for speech recognition services.
600 virtual WebSpeechRecognizer* speechRecognizer() { return 0; } 593 virtual WebSpeechRecognizer* speechRecognizer() { return 0; }
601 594
602 protected: 595 protected:
603 virtual ~WebFrameClient() { } 596 virtual ~WebFrameClient() { }
604 }; 597 };
605 598
606 } // namespace blink 599 } // namespace blink
607 600
608 #endif 601 #endif
OLDNEW
« no previous file with comments | « public/web/WebFrame.h ('k') | public/web/WebLocalFrame.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698