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

Side by Side Diff: third_party/WebKit/public/platform/Platform.h

Issue 1538803002: Migrates battery_status from content/renderer/ to WebKit/platform/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added a TODO comment. Created 4 years, 10 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) 2012 Google Inc. All rights reserved. 2 * Copyright (C) 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 18 matching lines...) Expand all
29 */ 29 */
30 30
31 #ifndef Platform_h 31 #ifndef Platform_h
32 #define Platform_h 32 #define Platform_h
33 33
34 #ifdef WIN32 34 #ifdef WIN32
35 #include <windows.h> 35 #include <windows.h>
36 #endif 36 #endif
37 37
38 #include "WebAudioDevice.h" 38 #include "WebAudioDevice.h"
39 #include "WebBatteryStatusListener.h"
40 #include "WebCommon.h" 39 #include "WebCommon.h"
41 #include "WebData.h" 40 #include "WebData.h"
42 #include "WebDeviceLightListener.h" 41 #include "WebDeviceLightListener.h"
43 #include "WebGamepadListener.h" 42 #include "WebGamepadListener.h"
44 #include "WebGamepads.h" 43 #include "WebGamepads.h"
45 #include "WebGestureDevice.h" 44 #include "WebGestureDevice.h"
46 #include "WebGraphicsContext3D.h" 45 #include "WebGraphicsContext3D.h"
47 #include "WebLocalizedString.h" 46 #include "WebLocalizedString.h"
48 #include "WebPlatformEventType.h" 47 #include "WebPlatformEventType.h"
49 #include "WebSize.h" 48 #include "WebSize.h"
50 #include "WebSpeechSynthesizer.h" 49 #include "WebSpeechSynthesizer.h"
51 #include "WebStorageQuotaCallbacks.h" 50 #include "WebStorageQuotaCallbacks.h"
52 #include "WebStorageQuotaType.h" 51 #include "WebStorageQuotaType.h"
53 #include "WebString.h" 52 #include "WebString.h"
54 #include "WebURLError.h" 53 #include "WebURLError.h"
55 #include "WebVector.h" 54 #include "WebVector.h"
56 55
56 #include "mojo/public/cpp/bindings/interface_ptr.h"
Sam McNally 2016/02/18 00:39:35 I don't think this is needed.
Yuki 2016/02/18 06:05:14 Done.
57 #include "mojo/public/cpp/bindings/interface_request.h"
58 #include "mojo/public/cpp/system/core.h"
59
57 class GrContext; 60 class GrContext;
58 61
59 namespace blink { 62 namespace blink {
60 63
61 class WebAudioBus; 64 class WebAudioBus;
62 class WebBlobRegistry; 65 class WebBlobRegistry;
63 class WebCanvasCaptureHandler; 66 class WebCanvasCaptureHandler;
64 class WebClipboard; 67 class WebClipboard;
65 class WebCompositorSupport; 68 class WebCompositorSupport;
66 class WebCookieJar; 69 class WebCookieJar;
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
499 virtual void willStopWorkerThread() { } 502 virtual void willStopWorkerThread() { }
500 503
501 // WebCrypto ---------------------------------------------------------- 504 // WebCrypto ----------------------------------------------------------
502 505
503 virtual WebCrypto* crypto() { return nullptr; } 506 virtual WebCrypto* crypto() { return nullptr; }
504 507
505 508
506 // Platform events ----------------------------------------------------- 509 // Platform events -----------------------------------------------------
507 // Device Orientation, Device Motion, Device Light, Battery, Gamepad. 510 // Device Orientation, Device Motion, Device Light, Battery, Gamepad.
508 511
512 // Connects the mojo handle to the remote service provider.
513 template<typename Interface>
514 void connectToRemoteService(mojo::InterfaceRequest<Interface> ptr)
515 {
516 connectToRemoteService(Interface::Name_, ptr.PassMessagePipe());
517 }
518 virtual void connectToRemoteService(const char* name, mojo::ScopedMessagePip eHandle handle) { }
519
509 // Request the platform to start listening to the events of the specified 520 // Request the platform to start listening to the events of the specified
510 // type and notify the given listener (if not null) when there is an update. 521 // type and notify the given listener (if not null) when there is an update.
511 virtual void startListening(WebPlatformEventType type, WebPlatformEventListe ner* listener) { } 522 virtual void startListening(WebPlatformEventType type, WebPlatformEventListe ner* listener) { }
512 523
513 // Request the platform to stop listening to the specified event and no 524 // Request the platform to stop listening to the specified event and no
514 // longer notify the listener, if any. 525 // longer notify the listener, if any.
515 virtual void stopListening(WebPlatformEventType type) { } 526 virtual void stopListening(WebPlatformEventType type) { }
516 527
517 // This method converts from the supplied DOM code enum to the 528 // This method converts from the supplied DOM code enum to the
518 // embedder's DOM code value for the key pressed. |domCode| values are 529 // embedder's DOM code value for the key pressed. |domCode| values are
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
596 protected: 607 protected:
597 BLINK_PLATFORM_EXPORT Platform(); 608 BLINK_PLATFORM_EXPORT Platform();
598 virtual ~Platform() { } 609 virtual ~Platform() { }
599 610
600 WebThread* m_mainThread; 611 WebThread* m_mainThread;
601 }; 612 };
602 613
603 } // namespace blink 614 } // namespace blink
604 615
605 #endif 616 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698