diff options
author | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-16 22:00:33 +0000 |
---|---|---|
committer | asargent@chromium.org <asargent@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-16 22:00:33 +0000 |
commit | f76dc353b84dcdd78de944db874424c4f4b14b95 (patch) | |
tree | 30d67f9a83be589667eb823d016a4d3bde38a586 /chrome/browser/resources/gcm_internals.html | |
parent | bf19bf1cef011d6fa34f8ae393c149d5f2114052 (diff) | |
download | chromium_src-f76dc353b84dcdd78de944db874424c4f4b14b95.zip chromium_src-f76dc353b84dcdd78de944db874424c4f4b14b95.tar.gz chromium_src-f76dc353b84dcdd78de944db874424c4f4b14b95.tar.bz2 |
Revert 264313 "Add activity recording capability to gcm internal..."
This caused a compile error on the Win x64 builder:
http://build.chromium.org/p/chromium.win/builders/Win%20x64%20Builder/builds/17353/steps/compile/logs/stdio
FAILED: ninja -t msvc -e environment.x64 -- C:\b\build\goma\gomacc.exe "C:\b\depot_tools\win_toolchain\vs2013_files\VC\bin\amd64\cl.exe" /nologo /showIncludes /FC @obj\google_apis\gcm\tools\mcs_probe.mcs_probe.obj.rsp /c ..\..\google_apis\gcm\tools\mcs_probe.cc /Foobj\google_apis\gcm\tools\mcs_probe.mcs_probe.obj /Fdobj\google_apis\gcm\mcs_probe.cc.pdb
c:\b\build\slave\cr-win-rel-x64\build\src\google_apis\gcm\tools\mcs_probe.cc(309) :error C2661: 'gcm::MCSClient::MCSClient' : no overloaded function takes 4 arguments
ninja: build stopped: subcommand failed.
> Add activity recording capability to gcm internals page. User can refresh, start/stop recording, and clear recording logs.
> Also added more information to the device info section and fixed a bug there.
>
> arv: owner review of chrome/browser/resources/*.
> jianli & fgorski please review the rest of the code, and zea for owner review of these code.
>
> BUG=341256
>
> Review URL: https://codereview.chromium.org/202083005
TBR=juyik@chromium.org
Review URL: https://codereview.chromium.org/240583002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@264319 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/gcm_internals.html')
-rw-r--r-- | chrome/browser/resources/gcm_internals.html | 82 |
1 files changed, 19 insertions, 63 deletions
diff --git a/chrome/browser/resources/gcm_internals.html b/chrome/browser/resources/gcm_internals.html index 50a508f..775a922 100644 --- a/chrome/browser/resources/gcm_internals.html +++ b/chrome/browser/resources/gcm_internals.html @@ -13,118 +13,74 @@ </head> <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> <h1>GCM Internals</h1> -<div class="flexbar"> - <button id="refresh">Refresh</button> - <button id="recording">Start Recording</button> - <button id="clear-logs">Clear All Logs</button> -</div> - -<h2>Device Info</h2> -<table id="device-info"> - <tbody> - <tr> - <td> +<div> + <h2>Device Info</h2> + <table> + <tr class="odd-number-row"> + <td class="row-caption"> Android Id </td> <td id="android-id"> </td> </tr> <tr> - <td> + <td class="row-caption"> User Profile Service Created </td> <td id="profile-service-created"> </td> </tr> - <tr> - <td> + <tr class="odd-number-row"> + <td class="row-caption"> GCM Enabled State </td> <td id="gcm-enabled-state"> </td> </tr> <tr> - <td> + <td class="row-caption"> Signed In Username </td> <td id="signed-in-username"> </td> </tr> - <tr> - <td> + <tr class="odd-number-row"> + <td class="row-caption"> GCM Client Created </td> <td id="gcm-client-created"> </td> </tr> <tr> - <td> + <td class="row-caption"> GCM Client State </td> <td id="gcm-client-state"> </td> </tr> - <tr> - <td> + <tr class="odd-number-row"> + <td class="row-caption"> GCM Client Is Ready </td> <td id="gcm-client-ready"> </td> </tr> <tr> - <td> + <td class="row-caption"> Connection Client Created </td> <td id="connection-client-created"> </td> </tr> - <tr> - <td> + <tr class="odd-number-row"> + <td class="row-caption"> Connection State </td> <td id="connection-state"> </td> </tr> - <tr> - <td> - Registered App Ids - </td> - <td id="registered-app-ids"> - </td> - </tr> - <tr> - <td> - Send Message Queue Size - </td> - <td id="send-queue-size"> - </td> - </tr> - <tr> - <td> - Resend Message Queue Size - </td> - <td id="resend-queue-size"> - </td> - </tr> - </tbody> -</table> - -<h2>Send Message Log</h2> -<table class="log-table"> - <thead> - <tr> - <th>Time</th> - <th>App Id</th> - <th>Receiver Id</th> - <th>Msg Id</th> - <th>Event</th> - <th>Details</th> - </tr> - </thead> - <tbody id="send-info"> - </tbody> -</table> - + </table> +</div> <script src="chrome://resources/js/i18n_template2.js"></script> </body> </html>
\ No newline at end of file |