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

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

Issue 393533002: Pass through the geofencing API calls to the content layer. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@geofencing2
Patch Set: Created 6 years, 5 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 class WebApplicationCacheHost; 56 class WebApplicationCacheHost;
57 class WebApplicationCacheHostClient; 57 class WebApplicationCacheHostClient;
58 class WebCachedURLRequest; 58 class WebCachedURLRequest;
59 class WebColorChooser; 59 class WebColorChooser;
60 class WebColorChooserClient; 60 class WebColorChooserClient;
61 class WebContentDecryptionModule; 61 class WebContentDecryptionModule;
62 class WebCookieJar; 62 class WebCookieJar;
63 class WebDataSource; 63 class WebDataSource;
64 class WebDOMEvent; 64 class WebDOMEvent;
65 class WebFormElement; 65 class WebFormElement;
66 class WebGeofencingClient;
66 class WebGeolocationClient; 67 class WebGeolocationClient;
67 class WebInputEvent; 68 class WebInputEvent;
68 class WebMediaPlayer; 69 class WebMediaPlayer;
69 class WebMediaPlayerClient; 70 class WebMediaPlayerClient;
70 class WebMIDIClient; 71 class WebMIDIClient;
71 class WebNotificationPermissionCallback; 72 class WebNotificationPermissionCallback;
72 class WebNotificationPresenter; 73 class WebNotificationPresenter;
73 class WebServiceWorkerProvider; 74 class WebServiceWorkerProvider;
74 class WebServiceWorkerProviderClient; 75 class WebServiceWorkerProviderClient;
75 class WebSocketHandle; 76 class WebSocketHandle;
(...skipping 382 matching lines...) Expand 10 before | Expand all | Expand 10 after
458 // A WebSocket object is going to open a new WebSocket connection. Used by 459 // A WebSocket object is going to open a new WebSocket connection. Used by
459 // the new WebSocket implementation. 460 // the new WebSocket implementation.
460 virtual void willOpenWebSocket(WebSocketHandle*) { } 461 virtual void willOpenWebSocket(WebSocketHandle*) { }
461 462
462 463
463 // Geolocation --------------------------------------------------------- 464 // Geolocation ---------------------------------------------------------
464 465
465 // Access the embedder API for (client-based) geolocation client . 466 // Access the embedder API for (client-based) geolocation client .
466 virtual WebGeolocationClient* geolocationClient() { return 0; } 467 virtual WebGeolocationClient* geolocationClient() { return 0; }
467 468
469 // Access the embedder API for geofencing client.
470 virtual WebGeofencingClient* geofencingClient() { return 0; }
Peter Beverloo 2014/07/14 17:23:09 The geofencing client defines methods for (un)regi
471
468 472
469 // MediaStream ----------------------------------------------------- 473 // MediaStream -----------------------------------------------------
470 474
471 // A new WebRTCPeerConnectionHandler is created. 475 // A new WebRTCPeerConnectionHandler is created.
472 virtual void willStartUsingPeerConnectionHandler(WebLocalFrame*, WebRTCPeerC onnectionHandler*) { } 476 virtual void willStartUsingPeerConnectionHandler(WebLocalFrame*, WebRTCPeerC onnectionHandler*) { }
473 477
474 virtual WebUserMediaClient* userMediaClient() { return 0; } 478 virtual WebUserMediaClient* userMediaClient() { return 0; }
475 479
476 480
477 // Web MIDI ------------------------------------------------------------- 481 // Web MIDI -------------------------------------------------------------
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
526 // Access the embedder API for (client-based) screen orientation client . 530 // Access the embedder API for (client-based) screen orientation client .
527 virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0; } 531 virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0; }
528 532
529 protected: 533 protected:
530 virtual ~WebFrameClient() { } 534 virtual ~WebFrameClient() { }
531 }; 535 };
532 536
533 } // namespace blink 537 } // namespace blink
534 538
535 #endif 539 #endif
OLDNEW
« public/web/WebCircularRegion.h ('K') | « public/web/WebCircularRegion.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698