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

Issue 1295243003: Initial commit of the blimp/ folder and target (Closed)

Created:
5 years, 4 months ago by David Trainor- moved to gerrit
Modified:
5 years, 3 months ago
CC:
chromium-reviews, Khushal
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Initial commit of the blimp/ folder and target - Sets up a basic Android compositor shell. - Eventually should support other platforms as well. Inspiration for most components: BlimpLibraryLoader: BrowserStartupController.java blimp_library_loader.[cc,h]: content/app/android/library_loader_hooks.[cc,h] content/app/content_main_runner.[h,cc] blimp_jni_registrar.[cc,h]: content/app/android/app_jni_registrar.[cc,h] BlimpView.java: CompositorView.java blimp_view.[cc,h]: compositor_view.[cc,h] blimp_compositor.[cc,h]/blimp_output_surface.[cc,h] compositor_impl_android.[cc,h] blimp_context_provider.[cc,h]: in_process_context_provider.[cc,h] aw_render_thread_context_provider.[cc,h] blimp_layer_tree_settings.[cc,h]: render_widget_compositor.[cc,h] BUG=526219 Committed: https://crrev.com/e9c78dddbb858895a13ed8b22c53a07d63a9ff1b Cr-Commit-Position: refs/heads/master@{#347223}

Patch Set 1 #

Total comments: 47

Patch Set 2 : Cleaned it up, addressed nyquist@ nits #

Total comments: 9

Patch Set 3 : #

Patch Set 4 : Move target to right place in all.gyp #

Patch Set 5 : Removed unnecessary deps entry for this patch #

Patch Set 6 : Some cleanup nits. #

Total comments: 145

Patch Set 7 : Added GN targets and addressed some nits #

Patch Set 8 : #

Total comments: 34

Patch Set 9 : Addressed more nits/comments #

Patch Set 10 : Moar nitz #

Total comments: 8

Patch Set 11 : Fix deps, fix check #

Patch Set 12 : Rebased #

Patch Set 13 : Remove unused LayerTreeHostSingleThreadClient #

Patch Set 14 : Removed DCHECK, removed duplicate include. #

Total comments: 6

Patch Set 15 : Removed unused include #

Patch Set 16 : rebased #

Total comments: 61

Patch Set 17 : Address more nits #

Total comments: 21

Patch Set 18 : Address final nits. #

Total comments: 2
Unified diffs Side-by-side diffs Delta from patch set Stats (+1990 lines, -49 lines) Patch
M BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 1 chunk +1 line, -0 lines 0 comments Download
A + blimp/OWNERS View 1 chunk +2 lines, -1 line 0 comments Download
A blimp/PRESUBMIT.py View 1 2 3 4 5 6 1 chunk +25 lines, -0 lines 0 comments Download
A blimp/README View 1 chunk +1 line, -0 lines 0 comments Download
A blimp/client/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 1 chunk +96 lines, -0 lines 0 comments Download
A + blimp/client/DEPS View 1 2 3 4 5 6 7 8 9 10 1 chunk +6 lines, -2 lines 0 comments Download
A + blimp/client/android/AndroidManifest.xml.jinja2 View 1 2 3 4 5 6 7 8 9 10 11 1 chunk +10 lines, -12 lines 0 comments Download
A blimp/client/android/blimp_jni_registrar.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +19 lines, -0 lines 0 comments Download
A blimp/client/android/blimp_jni_registrar.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +27 lines, -0 lines 0 comments Download
A blimp/client/android/blimp_library_loader.h View 1 1 chunk +16 lines, -0 lines 0 comments Download
A blimp/client/android/blimp_library_loader.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +104 lines, -0 lines 0 comments Download
A blimp/client/android/blimp_view.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +68 lines, -0 lines 1 comment Download
A blimp/client/android/blimp_view.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +76 lines, -0 lines 0 comments Download
A + blimp/client/android/java/res/layout/blimp_main.xml View 1 chunk +4 lines, -6 lines 0 comments Download
A blimp/client/android/java/src/org/chromium/blimp/BlimpApplication.java View 1 chunk +26 lines, -0 lines 0 comments Download
A blimp/client/android/java/src/org/chromium/blimp/BlimpLibraryLoader.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +71 lines, -0 lines 0 comments Download
A blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +56 lines, -0 lines 0 comments Download
A blimp/client/android/java/src/org/chromium/blimp/BlimpView.java View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +128 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_compositor.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +96 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_compositor.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +169 lines, -0 lines 1 comment Download
A blimp/client/compositor/blimp_compositor_android.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +75 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_compositor_android.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 1 chunk +114 lines, -0 lines 0 comments Download
A + blimp/client/compositor/blimp_context_provider.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 3 chunks +22 lines, -28 lines 0 comments Download
A blimp/client/compositor/blimp_context_provider.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +188 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_output_surface.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +31 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_output_surface.cc View 1 2 3 4 5 6 7 8 1 chunk +29 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_task_graph_runner.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +33 lines, -0 lines 0 comments Download
A blimp/client/compositor/blimp_task_graph_runner.cc View 1 1 chunk +26 lines, -0 lines 0 comments Download
A blimp/client/compositor/test/dummy_layer_driver.h View 1 1 chunk +43 lines, -0 lines 0 comments Download
A blimp/client/compositor/test/dummy_layer_driver.cc View 1 1 chunk +60 lines, -0 lines 0 comments Download
A blimp/common/BUILD.gn View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +25 lines, -0 lines 0 comments Download
A blimp/common/DEPS View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +14 lines, -0 lines 0 comments Download
A blimp/common/blimp_common_export.h View 1 2 3 4 5 6 1 chunk +29 lines, -0 lines 0 comments Download
A blimp/common/compositor/blimp_layer_tree_settings.h View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +33 lines, -0 lines 0 comments Download
A blimp/common/compositor/blimp_layer_tree_settings.cc View 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 1 chunk +267 lines, -0 lines 0 comments Download

Messages

Total messages: 63 (9 generated)
David Trainor- moved to gerrit
Initial patch that builds a small compositor shell. I need to clean this up a ...
5 years, 4 months ago (2015-08-19 05:44:58 UTC) #2
nyquist
https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp File blimp/blimp.gyp (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp#newcode18 blimp/blimp.gyp:18: '../cc/cc.gyp:cc', Nit: lexicographic sort https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/DEPS File blimp/client/DEPS (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/DEPS#newcode4 ...
5 years, 4 months ago (2015-08-19 07:48:07 UTC) #3
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/android/blimp_library_loader.h File blimp/client/android/blimp_library_loader.h (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/android/blimp_library_loader.h#newcode24 blimp/client/android/blimp_library_loader.h:24: #include <jni.h> On 2015/08/19 07:48:06, nyquist wrote: > Nit: ...
5 years, 4 months ago (2015-08-19 07:49:37 UTC) #4
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp File blimp/blimp.gyp (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp#newcode18 blimp/blimp.gyp:18: '../cc/cc.gyp:cc', On 2015/08/19 07:48:06, nyquist (OOO - back 8-24) ...
5 years, 4 months ago (2015-08-21 00:49:46 UTC) #5
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/20001/blimp/common/compositor/blimp_layer_tree_settings.cc File blimp/common/compositor/blimp_layer_tree_settings.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/20001/blimp/common/compositor/blimp_layer_tree_settings.cc#newcode71 blimp/common/compositor/blimp_layer_tree_settings.cc:71: void PopulateCommonLayerTreeSettings(cc::LayerTreeSettings& settings, I pulled most of this from ...
5 years, 4 months ago (2015-08-21 00:50:54 UTC) #6
nyquist
https://codereview.chromium.org/1295243003/diff/1/blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java File blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java (right): https://codereview.chromium.org/1295243003/diff/1/blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java#newcode28 blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java:28: Log.e(TAG, "Native startup exception"); On 2015/08/21 00:49:46, David Trainor ...
5 years, 4 months ago (2015-08-21 00:52:23 UTC) #7
Kevin Marshall
https://chromiumcodereview.appspot.com/1295243003/diff/20001/blimp/client/compositor/blimp_compositor_android.cc File blimp/client/compositor/blimp_compositor_android.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/20001/blimp/client/compositor/blimp_compositor_android.cc#newcode80 blimp/client/compositor/blimp_compositor_android.cc:80: // Adjust for some resolutions that barely straddle an ...
5 years, 4 months ago (2015-08-21 18:46:35 UTC) #8
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java File blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java#newcode28 blimp/client/android/java/src/org/chromium/blimp/BlimpRendererActivity.java:28: Log.e(TAG, "Native startup exception"); On 2015/08/21 00:52:23, nyquist (OOO ...
5 years, 4 months ago (2015-08-21 19:02:24 UTC) #9
David Trainor- moved to gerrit
+sievers for review of compositor code and some owners requirements.
5 years, 4 months ago (2015-08-21 19:16:38 UTC) #11
David Trainor- moved to gerrit
Hi all! PTAL thanks :). This patch lands a basic Android 'compositor shell' that spins ...
5 years, 3 months ago (2015-08-24 21:18:33 UTC) #13
Khushal
https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp File blimp/blimp.gyp (right): https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp#newcode9 blimp/blimp.gyp:9: 'type': 'shared_library', The target should probably be component. We ...
5 years, 3 months ago (2015-08-26 03:30:24 UTC) #15
David Trainor- moved to gerrit
https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp File blimp/blimp.gyp (right): https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp#newcode9 blimp/blimp.gyp:9: 'type': 'shared_library', On 2015/08/26 03:30:24, Khushal wrote: > The ...
5 years, 3 months ago (2015-08-26 05:50:44 UTC) #16
danakj
> BUG= Please file at least one bug for tracking this work and point to ...
5 years, 3 months ago (2015-08-26 18:19:09 UTC) #17
danakj
+enne for cc
5 years, 3 months ago (2015-08-26 18:19:17 UTC) #19
danakj
https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/DEPS File blimp/client/DEPS (right): https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/DEPS#newcode3 blimp/client/DEPS:3: "+cc", also -cc/blink https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/DEPS#newcode10 blimp/client/DEPS:10: "+ui/gfx", do you need ...
5 years, 3 months ago (2015-08-26 18:21:16 UTC) #20
danakj
You may want to consider adding a PRESUBMIT.py now that does things like enforce linter ...
5 years, 3 months ago (2015-08-26 18:23:05 UTC) #21
danakj
https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/common/DEPS File blimp/common/DEPS (right): https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/common/DEPS#newcode3 blimp/common/DEPS:3: "+cc", -cc/blink here too https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/common/DEPS#newcode7 blimp/common/DEPS:7: "+ui/gfx", same question
5 years, 3 months ago (2015-08-26 18:23:36 UTC) #22
jbudorick
GN? https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp File blimp/blimp.gyp (right): https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp#newcode14 blimp/blimp.gyp:14: '<(DEPTH)/skia/skia.gyp:skia', nit: ordering https://codereview.chromium.org/1295243003/diff/100001/blimp/blimp.gyp#newcode27 blimp/blimp.gyp:27: # TODO(dtrainor): For ...
5 years, 3 months ago (2015-08-26 18:26:12 UTC) #23
danakj
On Wed, Aug 26, 2015 at 11:26 AM, <jbudorick@chromium.org> wrote: > GN? Oh yes. You ...
5 years, 3 months ago (2015-08-26 18:30:54 UTC) #24
Wez
Sorry; taking me a while to work through this one - here are comments up ...
5 years, 3 months ago (2015-08-27 02:01:52 UTC) #25
Wez
https://codereview.chromium.org/1295243003/diff/140001/blimp/client/compositor/blimp_compositor.h File blimp/client/compositor/blimp_compositor.h (right): https://codereview.chromium.org/1295243003/diff/140001/blimp/client/compositor/blimp_compositor.h#newcode94 blimp/client/compositor/blimp_compositor.h:94: base::WeakPtrFactory<BlimpCompositor> weak_factory_; This seems to be unused. https://codereview.chromium.org/1295243003/diff/140001/blimp/client/compositor/blimp_context_provider.cc File ...
5 years, 3 months ago (2015-08-27 18:23:55 UTC) #26
danakj
https://codereview.chromium.org/1295243003/diff/140001/blimp/client/compositor/blimp_context_provider.h File blimp/client/compositor/blimp_context_provider.h (right): https://codereview.chromium.org/1295243003/diff/140001/blimp/client/compositor/blimp_context_provider.h#newcode23 blimp/client/compositor/blimp_context_provider.h:23: static scoped_refptr<BlimpContextProvider> Create( On 2015/08/27 18:23:55, Wez wrote: > ...
5 years, 3 months ago (2015-08-27 18:27:31 UTC) #27
David Trainor- moved to gerrit
ok i think i addressed a bunch of the nits/commented on the ones i didn't. ...
5 years, 3 months ago (2015-08-28 01:23:48 UTC) #28
David Trainor- moved to gerrit
I also removed the gyp files and target. I'll try just using gn (seemed to ...
5 years, 3 months ago (2015-08-28 01:25:26 UTC) #29
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/BUILD.gn File blimp/client/BUILD.gn (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/BUILD.gn#newcode25 blimp/client/BUILD.gn:25: "//blimp/common:blimp_common", Will fix ordering.
5 years, 3 months ago (2015-08-28 10:09:33 UTC) #30
danakj
https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/DEPS File blimp/client/DEPS (right): https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/DEPS#newcode10 blimp/client/DEPS:10: "+ui/gfx", On 2015/08/28 01:23:44, David Trainor wrote: > On ...
5 years, 3 months ago (2015-08-28 17:36:33 UTC) #31
danakj
the ui/gfx/ and cc/ DEPS LGTM
5 years, 3 months ago (2015-08-28 17:37:11 UTC) #32
danakj
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc File blimp/client/compositor/blimp_context_provider.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc#newcode72 blimp/client/compositor/blimp_context_provider.cc:72: CHECK(context_); What's the point of this? You just crashed ...
5 years, 3 months ago (2015-08-28 17:38:46 UTC) #33
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/BUILD.gn File blimp/client/BUILD.gn (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/BUILD.gn#newcode25 blimp/client/BUILD.gn:25: "//blimp/common:blimp_common", On 2015/08/28 10:09:33, David Trainor wrote: > Will ...
5 years, 3 months ago (2015-08-28 18:24:16 UTC) #34
Wez
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc File blimp/client/compositor/blimp_context_provider.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc#newcode72 blimp/client/compositor/blimp_context_provider.cc:72: CHECK(context_); On 2015/08/28 18:24:16, David Trainor wrote: > On ...
5 years, 3 months ago (2015-08-31 16:27:18 UTC) #35
David Trainor- moved to gerrit
Ping! Adding reed@google.com because that's the actual owner (not reed@chromium.org). I'm adding skia and third_party/skia ...
5 years, 3 months ago (2015-08-31 20:15:28 UTC) #37
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc File blimp/client/compositor/blimp_context_provider.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc#newcode72 blimp/client/compositor/blimp_context_provider.cc:72: CHECK(context_); On 2015/08/31 16:27:18, Wez wrote: > On 2015/08/28 ...
5 years, 3 months ago (2015-08-31 21:25:43 UTC) #38
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc File blimp/client/compositor/blimp_context_provider.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc#newcode72 blimp/client/compositor/blimp_context_provider.cc:72: CHECK(context_); On 2015/08/31 21:25:43, David Trainor wrote: > On ...
5 years, 3 months ago (2015-08-31 21:27:28 UTC) #39
danakj
On Mon, Aug 31, 2015 at 2:27 PM, <dtrainor@chromium.org> wrote: > > > https://chromiumcodereview.appspot.com/1295243003/diff/180001/blimp/client/compositor/blimp_context_provider.cc > ...
5 years, 3 months ago (2015-08-31 21:30:08 UTC) #40
David Trainor- moved to gerrit
On 2015/08/31 21:30:08, danakj wrote: > On Mon, Aug 31, 2015 at 2:27 PM, <mailto:dtrainor@chromium.org> ...
5 years, 3 months ago (2015-08-31 22:28:51 UTC) #41
danakj
On Mon, Aug 31, 2015 at 3:28 PM, <dtrainor@chromium.org> wrote: > On 2015/08/31 21:30:08, danakj ...
5 years, 3 months ago (2015-08-31 22:34:34 UTC) #42
no sievers
lgtm https://chromiumcodereview.appspot.com/1295243003/diff/260001/blimp/client/android/blimp_library_loader.cc File blimp/client/android/blimp_library_loader.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/260001/blimp/client/android/blimp_library_loader.cc#newcode76 blimp/client/android/blimp_library_loader.cc:76: g_main_message_loop.Get().reset(new base::MessageLoopForUI); Where is the AtExitManager destroyed that ...
5 years, 3 months ago (2015-08-31 23:50:34 UTC) #43
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/260001/blimp/client/android/blimp_library_loader.cc File blimp/client/android/blimp_library_loader.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/260001/blimp/client/android/blimp_library_loader.cc#newcode76 blimp/client/android/blimp_library_loader.cc:76: g_main_message_loop.Get().reset(new base::MessageLoopForUI); On 2015/08/31 23:50:33, sievers wrote: > Where ...
5 years, 3 months ago (2015-09-01 00:32:15 UTC) #44
David Trainor- moved to gerrit
dpranke@: Can I get an OWNER review of the top level BUILD.gn? Thanks!
5 years, 3 months ago (2015-09-01 00:53:27 UTC) #46
Dirk Pranke
lgtm
5 years, 3 months ago (2015-09-01 18:53:34 UTC) #47
reed1
lgtm
5 years, 3 months ago (2015-09-01 19:14:29 UTC) #48
Wez
David, can you update the CL description to indicate which pre-existing Chromium components this impl ...
5 years, 3 months ago (2015-09-02 23:26:58 UTC) #49
David Trainor- moved to gerrit
On 2015/09/02 23:26:58, Wez wrote: > David, can you update the CL description to indicate ...
5 years, 3 months ago (2015-09-02 23:29:32 UTC) #50
Wez
Almost there; mostly comment-related nits here. https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/android/blimp_library_loader.cc File blimp/client/android/blimp_library_loader.cc (right): https://chromiumcodereview.appspot.com/1295243003/diff/100001/blimp/client/android/blimp_library_loader.cc#newcode34 blimp/client/android/blimp_library_loader.cc:34: VLOG(0) << "Chromium ...
5 years, 3 months ago (2015-09-03 00:49:28 UTC) #51
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp File blimp/blimp.gyp (right): https://chromiumcodereview.appspot.com/1295243003/diff/1/blimp/blimp.gyp#newcode76 blimp/blimp.gyp:76: 'apk_name': 'Blimp', On 2015/08/27 02:01:50, Wez wrote: > nit: ...
5 years, 3 months ago (2015-09-03 06:33:22 UTC) #52
Wez
https://chromiumcodereview.appspot.com/1295243003/diff/300001/blimp/client/android/blimp_view.h File blimp/client/android/blimp_view.h (right): https://chromiumcodereview.appspot.com/1295243003/diff/300001/blimp/client/android/blimp_view.h#newcode32 blimp/client/android/blimp_view.h:32: // (device independent pixels) to pixels. On 2015/09/03 06:33:21, ...
5 years, 3 months ago (2015-09-03 18:26:11 UTC) #53
danakj
On Thu, Sep 3, 2015 at 11:26 AM, <wez@chromium.org> wrote: > > > https://chromiumcodereview.appspot.com/1295243003/diff/300001/blimp/client/android/blimp_view.h > ...
5 years, 3 months ago (2015-09-03 18:31:38 UTC) #54
Wez
Agreed; I'm happy so long as we have consistent terminology! My preference would be for ...
5 years, 3 months ago (2015-09-03 18:46:04 UTC) #55
David Trainor- moved to gerrit
https://chromiumcodereview.appspot.com/1295243003/diff/320001/blimp/client/android/blimp_jni_registrar.h File blimp/client/android/blimp_jni_registrar.h (right): https://chromiumcodereview.appspot.com/1295243003/diff/320001/blimp/client/android/blimp_jni_registrar.h#newcode15 blimp/client/android/blimp_jni_registrar.h:15: // the native Java VM code. On 2015/09/03 18:26:11, ...
5 years, 3 months ago (2015-09-03 19:06:01 UTC) #56
nyquist
lgtm
5 years, 3 months ago (2015-09-03 19:14:14 UTC) #57
Wez
lgtm Just a couple more comment issues, that we can address via a follow-up CL. ...
5 years, 3 months ago (2015-09-03 19:56:08 UTC) #59
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1295243003/340001 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1295243003/340001
5 years, 3 months ago (2015-09-03 19:56:21 UTC) #61
commit-bot: I haz the power
Committed patchset #18 (id:340001)
5 years, 3 months ago (2015-09-03 20:05:03 UTC) #62
commit-bot: I haz the power
5 years, 3 months ago (2015-09-03 20:05:53 UTC) #63
Message was sent while issue was closed.
Patchset 18 (id:??) landed as
https://crrev.com/e9c78dddbb858895a13ed8b22c53a07d63a9ff1b
Cr-Commit-Position: refs/heads/master@{#347223}

Powered by Google App Engine
This is Rietveld 408576698