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

Issue 736363002: Stub for web-base client for DevTools bridge and tests (Closed)

Created:
6 years, 1 month ago by SeRya
Modified:
6 years, 1 month ago
CC:
chromium-reviews, vsevik, yurys, paulirish+reviews_chromium.org, devtools-reviews_chromium.org, aandrey+blink_chromium.org, pfeldman
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Project:
chromium
Visibility:
Public.

Description

Stub for web-base client for DevTools bridge and tests This patch mostly consists of testing environment for web WebClient. While WebClient intended to be base for a new DeviceProvider in DevTools frontend (https://codereview.chromium.org/720133002/) it is convinient to run tests on android. It lets to test the client directly against server counterpart avoiding flakiness of network and cloud services. TBR=jochen@chromium.org BUG=383418 Committed: https://crrev.com/ff7a801dfddaa22643accaf3e0df192470fb7a7b Cr-Commit-Position: refs/heads/master@{#305131}

Patch Set 1 #

Total comments: 20

Patch Set 2 : #

Patch Set 3 : #

Patch Set 4 : Fixed DEPS #

Patch Set 5 : Fixed presubmits #

Unified diffs Side-by-side diffs Delta from patch set Stats (+491 lines, -28 lines) Patch
M build/all.gyp View 1 2 chunks +2 lines, -0 lines 0 comments Download
M components/devtools_bridge.gyp View 5 chunks +106 lines, -14 lines 0 comments Download
M components/devtools_bridge/DEPS View 1 2 3 1 chunk +0 lines, -2 lines 0 comments Download
A components/devtools_bridge/android/client/javatests/AndroidManifest.xml View 1 1 chunk +36 lines, -0 lines 0 comments Download
A + components/devtools_bridge/android/client/javatests/DEPS View 1 2 3 1 chunk +1 line, -0 lines 0 comments Download
A components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java View 1 2 1 chunk +43 lines, -0 lines 0 comments Download
A components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/browsertests/TestApplication.java View 1 1 chunk +78 lines, -0 lines 0 comments Download
M components/devtools_bridge/android/session_dependency_factory_android.h View 1 2 chunks +3 lines, -2 lines 0 comments Download
M components/devtools_bridge/android/session_dependency_factory_android.cc View 1 chunk +2 lines, -2 lines 0 comments Download
A components/devtools_bridge/client/DEPS View 1 chunk +5 lines, -0 lines 0 comments Download
A components/devtools_bridge/client/web_client.h View 1 2 3 4 1 chunk +46 lines, -0 lines 0 comments Download
A components/devtools_bridge/client/web_client.cc View 1 1 chunk +37 lines, -0 lines 0 comments Download
A + components/devtools_bridge/test/android/client/DEPS View 1 chunk +1 line, -0 lines 0 comments Download
A components/devtools_bridge/test/android/client/javatests/jni/jni_onload.cc View 1 chunk +30 lines, -0 lines 0 comments Download
A components/devtools_bridge/test/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClient.java View 1 chunk +27 lines, -0 lines 0 comments Download
A components/devtools_bridge/test/android/client/web_client_android.h View 1 2 3 4 1 chunk +34 lines, -0 lines 0 comments Download
A components/devtools_bridge/test/android/client/web_client_android.cc View 1 1 chunk +36 lines, -0 lines 0 comments Download
M components/devtools_bridge/test/android/javatests/jni/jni_onload.cc View 1 chunk +4 lines, -8 lines 0 comments Download

Messages

Total messages: 17 (5 generated)
SeRya
PTAL
6 years, 1 month ago (2014-11-20 13:26:44 UTC) #2
mnaganov (inactive)
https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/AndroidManifest.xml File components/devtools_bridge/android/client/javatests/AndroidManifest.xml (right): https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/AndroidManifest.xml#newcode12 components/devtools_bridge/android/client/javatests/AndroidManifest.xml:12: <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> You probably not need most of the ...
6 years, 1 month ago (2014-11-20 19:02:42 UTC) #3
SeRya
https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/AndroidManifest.xml File components/devtools_bridge/android/client/javatests/AndroidManifest.xml (right): https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/AndroidManifest.xml#newcode12 components/devtools_bridge/android/client/javatests/AndroidManifest.xml:12: <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> On 2014/11/20 19:02:41, mnaganov (cr) wrote: > ...
6 years, 1 month ago (2014-11-20 21:10:39 UTC) #4
mnaganov (inactive)
https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java File components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java (right): https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java#newcode35 components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java:35: } catch (ProcessInitException e) { On 2014/11/20 21:10:38, SeRya ...
6 years, 1 month ago (2014-11-20 21:54:49 UTC) #5
SeRya
https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java File components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java (right): https://codereview.chromium.org/736363002/diff/1/components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java#newcode35 components/devtools_bridge/android/client/javatests/src/org/chromium/components/devtools_bridge/WebClientTest.java:35: } catch (ProcessInitException e) { On 2014/11/20 21:54:48, mnaganov ...
6 years, 1 month ago (2014-11-20 22:37:24 UTC) #6
mnaganov (inactive)
lgtm
6 years, 1 month ago (2014-11-20 22:53:07 UTC) #7
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/736363002/80001
6 years, 1 month ago (2014-11-20 23:32:53 UTC) #10
commit-bot: I haz the power
Try jobs failed on following builders: chromium_presubmit on tryserver.chromium.linux (http://build.chromium.org/p/tryserver.chromium.linux/builders/chromium_presubmit/builds/25690)
6 years, 1 month ago (2014-11-20 23:40:05 UTC) #12
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/736363002/100001
6 years, 1 month ago (2014-11-20 23:53:59 UTC) #14
commit-bot: I haz the power
Committed patchset #5 (id:100001)
6 years, 1 month ago (2014-11-21 01:10:22 UTC) #15
commit-bot: I haz the power
Patchset 5 (id:??) landed as https://crrev.com/ff7a801dfddaa22643accaf3e0df192470fb7a7b Cr-Commit-Position: refs/heads/master@{#305131}
6 years, 1 month ago (2014-11-21 01:11:07 UTC) #16
SeRya
6 years ago (2014-12-15 09:32:25 UTC) #17
Message was sent while issue was closed.
A revert of this CL (patchset #5 id:100001) has been created in
https://codereview.chromium.org/802293002/ by serya@chromium.org.

The reason for reverting is: Reverting since now DevToolsBridgeClient
(https://code.google.com/p/chromium/codesearch#chromium/src/chrome/browser/dev...)
is that WebClient supposed to be. All further code will be placed there..

Powered by Google App Engine
This is Rietveld 408576698