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

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

Issue 317413003: Move MIDI code to hang off WebFrame. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: fix webkit tests Created 6 years, 6 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
« no previous file with comments | « public/web/WebFrameClient.h ('k') | no next file » | 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) 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 class WebDragData; 54 class WebDragData;
55 class WebElement; 55 class WebElement;
56 class WebExternalPopupMenu; 56 class WebExternalPopupMenu;
57 class WebExternalPopupMenuClient; 57 class WebExternalPopupMenuClient;
58 class WebFileChooserCompletion; 58 class WebFileChooserCompletion;
59 class WebGestureEvent; 59 class WebGestureEvent;
60 class WebHitTestResult; 60 class WebHitTestResult;
61 class WebImage; 61 class WebImage;
62 class WebInputElement; 62 class WebInputElement;
63 class WebKeyboardEvent; 63 class WebKeyboardEvent;
64 class WebMIDIClient;
65 class WebNode; 64 class WebNode;
66 class WebPushClient; 65 class WebPushClient;
67 class WebRange; 66 class WebRange;
68 class WebSpeechRecognizer; 67 class WebSpeechRecognizer;
69 class WebScreenOrientationClient; 68 class WebScreenOrientationClient;
70 class WebStorageNamespace; 69 class WebStorageNamespace;
71 class WebURL; 70 class WebURL;
72 class WebURLRequest; 71 class WebURLRequest;
73 class WebView; 72 class WebView;
74 class WebWidget; 73 class WebWidget;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
281 280
282 // Visibility ----------------------------------------------------------- 281 // Visibility -----------------------------------------------------------
283 282
284 // Returns the current visibility of the WebView. 283 // Returns the current visibility of the WebView.
285 virtual WebPageVisibilityState visibilityState() const 284 virtual WebPageVisibilityState visibilityState() const
286 { 285 {
287 return WebPageVisibilityStateVisible; 286 return WebPageVisibilityStateVisible;
288 } 287 }
289 288
290 289
291 // Web MIDI -------------------------------------------------------------
292
293 virtual WebMIDIClient* webMIDIClient() { return 0; }
294
295
296 // Push Messaging ------------------------------------------------------- 290 // Push Messaging -------------------------------------------------------
297 291
298 virtual WebPushClient* webPushClient() { return 0; } 292 virtual WebPushClient* webPushClient() { return 0; }
299 293
300 // Screen Orientation --------------------------------------------------- 294 // Screen Orientation ---------------------------------------------------
301 295
302 virtual WebScreenOrientationClient* webScreenOrientationClient() 296 virtual WebScreenOrientationClient* webScreenOrientationClient()
303 { 297 {
304 return 0; 298 return 0;
305 } 299 }
(...skipping 18 matching lines...) Expand all
324 // Informs the browser that the draggable regions have been updated. 318 // Informs the browser that the draggable regions have been updated.
325 virtual void draggableRegionsChanged() { } 319 virtual void draggableRegionsChanged() { }
326 320
327 protected: 321 protected:
328 ~WebViewClient() { } 322 ~WebViewClient() { }
329 }; 323 };
330 324
331 } // namespace blink 325 } // namespace blink
332 326
333 #endif 327 #endif
OLDNEW
« no previous file with comments | « public/web/WebFrameClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698