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

Issue 1257703003: Revert of ApplicationImpl cleanup, part 1: (Closed)

Created:
5 years, 4 months ago by dzhioev (left Google)
Modified:
5 years, 4 months ago
CC:
chromium-reviews, qsr+mojo_chromium.org, viettrungluu+watch_chromium.org, penghuang+watch-mandoline_chromium.org, jam, yzshen+watch_chromium.org, abarth-chromium, Aaron Boodman, darin-cc_chromium.org, darin (slow to review), ben+mojo_chromium.org
Base URL:
https://chromium.googlesource.com/chromium/src.git@master
Target Ref:
refs/pending/heads/master
Project:
chromium
Visibility:
Public.

Description

Revert of ApplicationImpl cleanup, part 1: (patchset #4 id:60001 of https://codereview.chromium.org/1266643003/) Reason for revert: Breaks Linux build: [1240/8599] CXX obj/components/pdf_viewer/libpdf_viewer_library/pdf_viewer.o FAILED: /mnt/data/b/build/goma/gomacc ../../third_party/llvm-build/Release+Asserts/bin/clang++ -MMD -MF obj/components/pdf_viewer/libpdf_viewer_library/pdf_viewer.o.d -DGL_GLEXT_PROTOTYPES -DV8_DEPRECATION_WARNINGS -DCLD_VERSION=2 -DENABLE_MDNS=1 -DENABLE_NOTIFICATIONS -DENABLE_PEPPER_CDMS -DENABLE_PLUGINS=1 -DENABLE_PRINTING=1 -DENABLE_BASIC_PRINTING=1 -DENABLE_PRINT_PREVIEW=1 -DENABLE_SPELLCHECK=1 -DDONT_EMBED_BUILD_METADATA -DUSE_UDEV -DUI_COMPOSITOR_IMAGE_TRANSPORT -DUSE_ASH=1 -DUSE_AURA=1 -DUSE_PANGO=1 -DUSE_CAIRO=1 -DUSE_CLIPBOARD_AURAX11=1 -DUSE_DEFAULT_RENDER_THEME=1 -DUSE_GLIB=1 -DUSE_OPENSSL=1 -DUSE_NSS_CERTS=1 -DUSE_X11=1 -DENABLE_WEBRTC=1 -DENABLE_EXTENSIONS=1 -DENABLE_CONFIGURATION_POLICY -DENABLE_TASK_MANAGER=1 -DENABLE_THEMES=1 -DENABLE_CAPTIVE_PORTAL_DETECTION=1 -DENABLE_SESSION_SERVICE=1 -DENABLE_APP_LIST=1 -DENABLE_SETTINGS_APP=1 -DENABLE_SUPERVISED_USERS=1 -DENABLE_SERVICE_DISCOVERY=1 -DENABLE_AUTOFILL_DIALOG=1 -DENABLE_REMOTING=1 -DENABLE_GOOGLE_NOW=1 -DENABLE_ONE_CLICK_SIGNIN -DENABLE_HIDPI=1 -DENABLE_TOPCHROME_MD=1 -DV8_USE_EXTERNAL_STARTUP_DATA -DENABLE_BACKGROUND=1 -DENABLE_PRE_SYNC_BACKUP -DFULL_SAFE_BROWSING -DSAFE_BROWSING_CSD -DSAFE_BROWSING_DB_LOCAL -DSAFE_BROWSING_SERVICE -DCHROMIUM_BUILD -DENABLE_MEDIA_ROUTER=1 -DCR_CLANG_REVISION=242792-1 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DGL_GLEXT_PROTOTYPES -DSK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS -DSK_LEGACY_SKPOINT3_CTORS -DSK_SUPPORT_GPU=1 -DU_USING_ICU_NAMESPACE=0 -DU_ENABLE_DYLOAD=0 -DU_STATIC_IMPLEMENTATION -DGLES2_USE_MOJO -I../.. -Igen -I../../third_party/mojo/src -Igen/third_party/mojo/src -I/usr/include/glib-2.0 -I/usr/lib/x86_64-linux-gnu/glib-2.0/include -I../../third_party/khronos -I../../gpu -I../../skia/config -I../../skia/ext -I../../third_party/skia/include/c -I../../third_party/skia/include/config -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/images -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pdf -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../third_party/skia/include/gpu -I../../third_party/skia/src/gpu -I../../third_party/icu/source/common -I../../third_party/icu/source/i18n -I../../mojo/services -Igen/mojo/services -fno-strict-aliasing -fstack-protector --param=ssp-buffer-size=4 -m64 -march=x86-64 -funwind-tables -fPIC -pipe -pthread -B../../third_party/binutils/Linux_x64/Release/bin -fcolor-diagnostics -Wall -Wsign-compare -Wendif-labels -Werror -Wno-missing-field-initializers -Wno-unused-parameter -Wno-c++11-narrowing -Wno-char-subscripts -Wno-covered-switch-default -Wno-deprecated-register -Wno-unneeded-internal-declaration -Wno-reserved-user-defined-literal -Wno-inconsistent-missing-override -Wno-shift-negative-value -fvisibility=hidden -Xclang -load -Xclang ../../third_party/llvm-build/Release+Asserts/lib/libFindBadConstructs.so -Xclang -plugin-arg-find-bad-constructs -Xclang check-templates -Xclang -add-plugin -Xclang find-bad-constructs -Wheader-hygiene -Wstring-conversion -O2 -fno-ident -fdata-sections -ffunction-sections -g1 -fno-threadsafe-statics -fvisibility-inlines-hidden -std=gnu++11 -fno-rtti -fno-exceptions -c ../../components/pdf_viewer/pdf_viewer.cc -o obj/components/pdf_viewer/libpdf_viewer_library/pdf_viewer.o ../../components/pdf_viewer/pdf_viewer.cc:435:12: error: no member named 'Terminate' in 'mojo::ApplicationImpl' app_.Terminate(); ~~~~ ^ 1 error generated. ninja: build stopped: subcommand failed. Original issue's description: > ApplicationImpl cleanup, part 1: > - Remove ctor that does not take a termination closure. > - Terminate()->Quit() > - QuitNow()->private > > R=jam@chromium.org > BUG=none > > Committed: https://crrev.com/46e34f6bc1c8424c383776e5961094c5df5d563b > Cr-Commit-Position: refs/heads/master@{#341028} TBR=jam@chromium.org,thestig@chromium.org,ben@chromium.org NOPRESUBMIT=true NOTREECHECKS=true NOTRY=true BUG=none Committed: https://crrev.com/43dad577a3dec647c2c3bd1b5e6b61bc138100e0 Cr-Commit-Position: refs/heads/master@{#341036}

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+38 lines, -40 lines) Patch
M components/filesystem/file_system_app.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/html_viewer/global_state.cc View 1 chunk +1 line, -1 line 0 comments Download
M components/view_manager/view_manager_app.cc View 1 chunk +1 line, -1 line 0 comments Download
M content/public/test/test_mojo_app.cc View 1 chunk +1 line, -1 line 0 comments Download
M device/devices_app/devices_app.cc View 1 chunk +1 line, -1 line 0 comments Download
M mandoline/ui/browser/browser_manager.cc View 1 chunk +1 line, -1 line 0 comments Download
M mojo/application/public/cpp/app_lifetime_helper.h View 1 chunk +1 line, -1 line 0 comments Download
M mojo/application/public/cpp/application_impl.h View 4 chunks +8 lines, -10 lines 0 comments Download
M mojo/application/public/cpp/lib/app_lifetime_helper.cc View 1 chunk +2 lines, -2 lines 0 comments Download
M mojo/application/public/cpp/lib/application_impl.cc View 4 chunks +21 lines, -21 lines 0 comments Download

Messages

Total messages: 4 (0 generated)
dzhioev (left Google)
Created Revert of ApplicationImpl cleanup, part 1:
5 years, 4 months ago (2015-07-30 01:54:30 UTC) #1
commit-bot: I haz the power
CQ is trying da patch. Follow status at https://chromium-cq-status.appspot.com/patch-status/1257703003/1 View timeline at https://chromium-cq-status.appspot.com/patch-timeline/1257703003/1
5 years, 4 months ago (2015-07-30 01:55:46 UTC) #2
commit-bot: I haz the power
Committed patchset #1 (id:1)
5 years, 4 months ago (2015-07-30 01:57:26 UTC) #3
commit-bot: I haz the power
5 years, 4 months ago (2015-07-30 01:57:55 UTC) #4
Message was sent while issue was closed.
Patchset 1 (id:??) landed as
https://crrev.com/43dad577a3dec647c2c3bd1b5e6b61bc138100e0
Cr-Commit-Position: refs/heads/master@{#341036}

Powered by Google App Engine
This is Rietveld 408576698