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

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

Issue 1367853002: Move GeolocationDispatcher into blink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 class WebColorChooser; 69 class WebColorChooser;
70 class WebColorChooserClient; 70 class WebColorChooserClient;
71 class WebContentDecryptionModule; 71 class WebContentDecryptionModule;
72 class WebCookieJar; 72 class WebCookieJar;
73 class WebCString; 73 class WebCString;
74 class WebDataSource; 74 class WebDataSource;
75 class WebEncryptedMediaClient; 75 class WebEncryptedMediaClient;
76 class WebExternalPopupMenu; 76 class WebExternalPopupMenu;
77 class WebExternalPopupMenuClient; 77 class WebExternalPopupMenuClient;
78 class WebFormElement; 78 class WebFormElement;
79 class WebGeolocationClient;
80 class WebInstalledAppClient; 79 class WebInstalledAppClient;
81 class WebMediaPlayer; 80 class WebMediaPlayer;
82 class WebMediaPlayerClient; 81 class WebMediaPlayerClient;
83 class WebMediaPlayerEncryptedMediaClient; 82 class WebMediaPlayerEncryptedMediaClient;
84 class WebMediaPlayerSource; 83 class WebMediaPlayerSource;
85 class WebMediaSession; 84 class WebMediaSession;
86 class WebMediaStream; 85 class WebMediaStream;
87 class WebMIDIClient; 86 class WebMIDIClient;
88 class WebNotificationPermissionCallback; 87 class WebNotificationPermissionCallback;
89 class WebPermissionClient; 88 class WebPermissionClient;
(...skipping 464 matching lines...) Expand 10 before | Expand all | Expand 10 after
554 virtual void requestStorageQuota( 553 virtual void requestStorageQuota(
555 WebStorageQuotaType, 554 WebStorageQuotaType,
556 unsigned long long newQuotaInBytes, 555 unsigned long long newQuotaInBytes,
557 WebStorageQuotaCallbacks) { } 556 WebStorageQuotaCallbacks) { }
558 557
559 // WebSocket ----------------------------------------------------- 558 // WebSocket -----------------------------------------------------
560 559
561 // A WebSocket object is going to open a new WebSocket connection. 560 // A WebSocket object is going to open a new WebSocket connection.
562 virtual void willOpenWebSocket(WebSocketHandle*) { } 561 virtual void willOpenWebSocket(WebSocketHandle*) { }
563 562
564 // Geolocation ---------------------------------------------------------
565
566 // Access the embedder API for (client-based) geolocation client .
567 virtual WebGeolocationClient* geolocationClient() { return 0; }
568
569
570 // MediaStream ----------------------------------------------------- 563 // MediaStream -----------------------------------------------------
571 564
572 // A new WebRTCPeerConnectionHandler is created. 565 // A new WebRTCPeerConnectionHandler is created.
573 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { } 566 virtual void willStartUsingPeerConnectionHandler(WebRTCPeerConnectionHandler *) { }
574 567
575 virtual WebUserMediaClient* userMediaClient() { return 0; } 568 virtual WebUserMediaClient* userMediaClient() { return 0; }
576 569
577 570
578 // Encrypted Media ------------------------------------------------- 571 // Encrypted Media -------------------------------------------------
579 572
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 // Mojo ---------------------------------------------------------------- 707 // Mojo ----------------------------------------------------------------
715 virtual ServiceRegistry* serviceRegistry() { return nullptr; } 708 virtual ServiceRegistry* serviceRegistry() { return nullptr; }
716 709
717 protected: 710 protected:
718 virtual ~WebFrameClient() { } 711 virtual ~WebFrameClient() { }
719 }; 712 };
720 713
721 } // namespace blink 714 } // namespace blink
722 715
723 #endif 716 #endif
OLDNEW
« no previous file with comments | « third_party/WebKit/public/blink_headers.gypi ('k') | third_party/WebKit/public/web/WebGeolocationClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698