回答編集履歴
1
追記
test
CHANGED
@@ -7,3 +7,43 @@
|
|
7
7
|
|
8
8
|
|
9
9
|
ということらしいです。
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
----
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
本当ですね, Chromium のソースを調べてみたら,しっかりハードコーディングされていました。ベンダーロックインありきの仕様だと言って良いでしょう。Chrome じゃなくて Chromium でもしっかり Google さんにロックインされますねw
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
[chromium/push_messaging_constants.cc at c4d3c31083a2e1481253ff2d24298a1dfe19c754 · chromium/chromium](https://github.com/chromium/chromium/blob/c4d3c31083a2e1481253ff2d24298a1dfe19c754/chrome/browser/push_messaging/push_messaging_constants.cc)
|
22
|
+
|
23
|
+
|
24
|
+
|
25
|
+
```cpp
|
26
|
+
|
27
|
+
// Copyright 2014 The Chromium Authors. All rights reserved.
|
28
|
+
|
29
|
+
// Use of this source code is governed by a BSD-style license that can be
|
30
|
+
|
31
|
+
// found in the LICENSE file.
|
32
|
+
|
33
|
+
|
34
|
+
|
35
|
+
#include "chrome/browser/push_messaging/push_messaging_constants.h"
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
const char kPushMessagingGcmEndpoint[] =
|
40
|
+
|
41
|
+
"https://fcm.googleapis.com/fcm/send/";
|
42
|
+
|
43
|
+
|
44
|
+
|
45
|
+
const char kPushMessagingForcedNotificationTag[] =
|
46
|
+
|
47
|
+
"user_visible_auto_notification";
|
48
|
+
|
49
|
+
```
|