1. 06 Sep, 2014 6 commits
    • Sadrul Habib Chowdhury's avatar
      athena: Make sure the window captions update correctly for theme-color. · e5d4ccbd
      Sadrul Habib Chowdhury authored
      Make sure the Activity is updated when the theme-color changes. Also, update the
      background color from UpdateWindowIcon() override, instead of from UpdateWindowTitle(),
      since the latter doesn't get called if the title didn't actually change, and so
      just changing the color doesn't actually update the view.
      
      BUG=none
      R=oshima@chromium.org
      
      Review URL: https://codereview.chromium.org/549593002
      
      Cr-Commit-Position: refs/heads/master@{#293600}
      e5d4ccbd
    • Matthew Dempsky's avatar
      bpf_dsl: support Switch/Case expressions · 279b9aad
      Matthew Dempsky authored
      This adds support for expressions like
      
          Switch(arg)
            .Case(1, result1)
            .CASES((2, 3), result2)
            .Default(result3)
      
      Currently these expressions are compiled simply as short-hand for
      
          If(arg == 1, result1)
            .ElseIf(arg == 2 || arg == 3, result2)
            .Else(result3)
      
      but in the future we should be able to optimize it better.
      
      The CASES macro ugliness is unfortunately necessary until we're
      allowed to use C++11.  Later we'll be able to change it to
      real C++ code like "Cases({2, 3}, result2)" (which clang-format
      will then format a bit more nicely too).
      
      BUG=408845
      R=jln@chromium.org, jorgelo@chromium.org
      
      Review URL: https://codereview.chromium.org/438683004
      
      Cr-Commit-Position: refs/heads/master@{#293599}
      279b9aad
    • jiayl's avatar
      Add the addIceCandidate failure case to webrtc-internals. · 9d972ceb
      jiayl authored
      Also updates the text for the candidate properties to follow the current spec.
      
      BUG=402560
      
      Review URL: https://codereview.chromium.org/468393003
      
      Cr-Commit-Position: refs/heads/master@{#293598}
      9d972ceb
    • gcasto's avatar
      [Password Generation] Update text for generation popup. · d2b6dd2a
      gcasto authored
      BUG=318977
      
      Review URL: https://codereview.chromium.org/542823002
      
      Cr-Commit-Position: refs/heads/master@{#293597}
      d2b6dd2a
    • acolwell's avatar
      Fix TrackRunIterator to generate a parse error when it encounters a reserved dependency value. · 272aec14
      acolwell authored
      Replaces a CHECK() with a parser error when reserved "depends on" values
      appear in the sample flags.
      
      BUG=410404
      TESTS=TrackRunIteratorTest.SampleInfoTest_ReservedInSampleFlags,
       TrackRunIteratorTest.SampleInfoTest_ReservedInDefaultSampleFlags
      
      Review URL: https://codereview.chromium.org/540503003
      
      Cr-Commit-Position: refs/heads/master@{#293596}
      272aec14
    • thakis's avatar
      Revert of Make ui gn check pass. Misc GN build improvements. (patchset #3... · 3f1281e5
      thakis authored
      Revert of Make ui gn check pass. Misc GN build improvements. (patchset #3 id:40001 of https://codereview.chromium.org/545313002/)
      
      Reason for revert:
      Broke http://build.chromium.org/p/chromium.linux/builders/Linux%20GN%20%28dbg%29/builds/11835
      
      [783/786 | 258.324] LINK ./chrome
      FAILED: /mnt/data/b/build/goma/gomacc ../../third_party/llvm-build/Release+Asserts/bin/clang++ -Wl,--fatal-warnings -m64 -fPIC -Wl,-z,noexecstack -Wl,-z,now -Wl,-z,relro -pthread -B../../third_party/binutils/Linux_x64/Release/bin -fuse-ld=gold -Wl,--icf=none -Wl,-rpath=\$ORIGIN/ -Wl,-rpath-link= -Wl,--disable-new-dtags -o ./keyboard_unittests -Wl,--start-group @./keyboard_unittests.rsp  -Wl,--end-group  -ldl -lgmodule-2.0 -lgobject-2.0 -lgthread-2.0 -lrt -lglib-2.0 -ludev -lfontconfig -lX11 -lXcomposite -lXcursor -lXdamage -lXext -lXfixes -lXi -lXrender -lXss -lXtst -lpangocairo-1.0 -lpango-1.0 -lcairo -lnss3 -lnssutil3 -lsmime3 -lplds4 -lplc4 -lnspr4 -lgconf-2 -lresolv -lfreetype -lasound -lXrandr -lcups -lgssapi_krb5 -lkrb5 -lk5crypto -lcom_err -lgcrypt -lz -lpthread -lcrypt -lm -lcap -ldbus-1 -lcrypto -lexpat
      ../../content/utility/utility_thread_impl.cc:38: error: undefined reference to 'content::UtilityThread::UtilityThread()'
      ../../content/utility/utility_thread_impl.cc:44: error: undefined reference to 'content::UtilityThread::UtilityThread()'
      ../../content/utility/utility_thread_impl.cc:49: error: undefined reference to 'content::UtilityThread::~UtilityThread()'
      clang: error: linker command failed with exit code 1 (use -v to see invocation)
      ninja: build stopped: subcommand failed.
      
      Original issue's description:
      > Make ui gn check pass. Misc GN build improvements.
      >
      > Content/public/app was messed up and didn't link everything properly, so this separates it out into browser and child like content/app is.
      >
      > R=jamesr@chromium.org
      >
      > Committed: https://chromium.googlesource.com/chromium/src/+/b41a8d6e789ac5df9a6d314cd0ad59f584f53dea
      
      TBR=jamesr@chromium.org,brettw@chromium.org
      NOTREECHECKS=true
      NOTRY=true
      
      Review URL: https://codereview.chromium.org/546943003
      
      Cr-Commit-Position: refs/heads/master@{#293595}
      3f1281e5
  2. 05 Sep, 2014 34 commits