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

Unified Diff: components/arc/arc_bridge_service.h

Issue 2062333002: mojo::Callback -> base::Callback (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/renderer/chrome_render_thread_observer.cc ('k') | components/arc/arc_bridge_service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/arc/arc_bridge_service.h
diff --git a/components/arc/arc_bridge_service.h b/components/arc/arc_bridge_service.h
index 7c29e78a4519ddfc433baf94fd0673b13b786578..3d719694314ee0219463b873144255e23136cbde 100644
--- a/components/arc/arc_bridge_service.h
+++ b/components/arc/arc_bridge_service.h
@@ -334,25 +334,25 @@ class ArcBridgeService : public mojom::ArcBridgeHost {
void CloseWindowManagerChannel();
// Callbacks for QueryVersion.
- void OnAppVersionReady(int32_t version);
- void OnAudioVersionReady(int32_t version);
- void OnAuthVersionReady(int32_t version);
- void OnBluetoothVersionReady(int32_t version);
- void OnClipboardVersionReady(int32_t version);
- void OnCrashCollectorVersionReady(int32_t version);
- void OnFileSystemVersionReady(int32_t version);
- void OnImeVersionReady(int32_t version);
- void OnIntentHelperVersionReady(int32_t version);
- void OnMetricsVersionReady(int32_t version);
- void OnNetVersionReady(int32_t version);
- void OnNotificationsVersionReady(int32_t version);
- void OnObbMounterVersionReady(int32_t version);
- void OnPolicyVersionReady(int32_t version);
- void OnPowerVersionReady(int32_t version);
- void OnProcessVersionReady(int32_t version);
- void OnStorageManagerVersionReady(int32_t version);
- void OnVideoVersionReady(int32_t version);
- void OnWindowManagerVersionReady(int32_t version);
+ void OnAppVersionReady(uint32_t version);
+ void OnAudioVersionReady(uint32_t version);
+ void OnAuthVersionReady(uint32_t version);
+ void OnBluetoothVersionReady(uint32_t version);
+ void OnClipboardVersionReady(uint32_t version);
+ void OnCrashCollectorVersionReady(uint32_t version);
+ void OnFileSystemVersionReady(uint32_t version);
+ void OnImeVersionReady(uint32_t version);
+ void OnIntentHelperVersionReady(uint32_t version);
+ void OnMetricsVersionReady(uint32_t version);
+ void OnNetVersionReady(uint32_t version);
+ void OnNotificationsVersionReady(uint32_t version);
+ void OnObbMounterVersionReady(uint32_t version);
+ void OnPolicyVersionReady(uint32_t version);
+ void OnPowerVersionReady(uint32_t version);
+ void OnProcessVersionReady(uint32_t version);
+ void OnStorageManagerVersionReady(uint32_t version);
+ void OnVideoVersionReady(uint32_t version);
+ void OnWindowManagerVersionReady(uint32_t version);
// Mojo interfaces.
mojom::AppInstancePtr app_ptr_;
« no previous file with comments | « chrome/renderer/chrome_render_thread_observer.cc ('k') | components/arc/arc_bridge_service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698