Chrome এ নতুন কি আছে
ব্লগ থেকে
The Chromium Chronicle #33: Views AnimationBuilder
Using layer based animations in Views can improve performance and reduce jankiness, but they're rather difficult to set up. The AnimationBuilder classes can vastly reduce complexity and improve readability for layer animations. Suppose you needed to
- ব্লগ
- C++
- Chrome
১৩ এপ্রিল, ২০২৩
The Chromium Chronicle #32: Mind the patch gap
Learn how Chromium developers can reduce the chance of n-day exploitation.
- ব্লগ
- Chrome
৩ ফেব্রুয়ারী, ২০২৩
The Chromium Chronicle #28: Getting started with Chrome on iOS
Learn how to work with the code behind Chrome's iOS app.
- ব্লগ
- Chrome
১ ফেব্রুয়ারী, ২০২২
The Chromium Chronicle #25: Thread Safety Annotations
Learn how Clang's static analysis framework takes over the toil of thread-safety proofs.
- ব্লগ
- C++
- Chrome
৪ অক্টোবর, ২০২১
The Chromium Chronicle #24: StrongAlias, IdType, and TokenType
The same type may sometimes represent values from incompatible domains, which can cause bugs. Fortunately, Chromium's //base makes it easy to introduce explicit, distinct types.
- ব্লগ
- C++
- Chrome
২৬ আগস্ট, ২০২১
The Chromium Chronicle #23: Verified builds in Chrome Infra
Implementing a policy enforcement check for Chrome and the infrastructure has enabled us to verify that certain minimum standards for security are met.
- ব্লগ
- Python
- Chrome
২৮ জুলাই, ২০২১
The Chromium Chronicle #22: Know Thy (Depot) Tools
Depot Tools is a collection of tools built on top of Git to simplify the workflow of developers contributing to the Chromium codebase and related projects.
- ব্লগ
- Chrome
২৮ জুন, ২০২১
The Chromium Chronicle #21: ChromeOS End-to-end UI Automation
Tast is a new UI library has been created that uses the Chrome a11y (accessibility) tree to control the ChromeOS UI. The library enables developers to easily create End-to-end tests against any visible UI surface.
- A11y
- ব্লগ
- Go
- Chrome
২৭ মে, ২০২১
The Chromium Chronicle #20: Benchmarking Test Harnesses
Adding benchmarks is an easy way to prevent performance regressions and help improve performance.
- ব্লগ
- Chrome
৩০ এপ্রিল, ২০২১
The Chromium Chronicle #19: Faster Development with CLion
CLion IDE makes it possible to navigate across symbols, search the codebase, and more.
- ব্লগ
- Chrome
৩০ মার্চ, ২০২১
The Chromium Chronicle #18: Chromium Code Coverage
Test coverage measures how much source code is executed when a particular test suite runs.
- ব্লগ
- Chrome
২২ ফেব্রুয়ারী, ২০২১
The Chromium Chronicle #17: Browser Test Mixins
When writing a browser test, you often want to programmatically perform setup actions that the user could do manually. To help you do this, mixins are a suite of tools for performing non-trivial browser test setup in a reusable way.
- ব্লগ
- C++
- Chrome
২৬ জানুয়ারী, ২০২১
The Chromium Chronicle #16: Updating Google Apps on Desktop
Ever wondered how Chrome keeps itself up-to-date on your desktop? Or how updates are served to Chromebooks, Chromecast, or Android?
- ব্লগ
- Chrome
১১ জানুয়ারী, ২০২১
The Chromium Chronicle #15: Restricting Target Visibility
In Chromium, it's common to find code written for one component that would be useful elsewhere, but might have hidden restrictions. For safety, limit external access to dangerous functionality by restricting target visibility.
- ব্লগ
- C++
- Chrome
৩০ নভেম্বর, ২০২০
The Chromium Chronicle #14: Adding Tests to the Waterfall
Want to detect regressions for your new feature in Chrome? Add your tests to the waterfall, Chrome's continuous build and test infrastructure!
- ব্লগ
- Chrome
৩০ অক্টোবর, ২০২০
ডকুমেন্টেশন আপডেট
এলএলএম কীভাবে প্রতিক্রিয়া স্ট্রিম করে
Chrome ওয়েব স্টোরের জন্য বিজ্ঞপ্তি এবং আবেদন
অরিজিন ট্রায়ালে AI APIs
এক্সটেনশন স্টোরেজ দেখুন এবং সম্পাদনা করুন
সিগন্যাল API-এর সাথে শংসাপত্রের সাথে পাসকিগুলিকে সামঞ্জস্যপূর্ণ রাখুন৷
height: auto;
(এবং অন্যান্য অন্তর্নিহিত সাইজিং কীওয়ার্ড) CSS-এ
interpolate-size
এবং calc-size()
সহ অভ্যন্তরীণ সাইজিং কীওয়ার্ডগুলিতে এবং থেকে অ্যানিমেট করুন , interpolate-size
এবং calc-size()
সহ অন্তর্নিহিত সাইজিং কীওয়ার্ডগুলিতে এবং থেকে অ্যানিমেট করুন
কেস স্টাডিজ
The Chromium Chronicle #33: Views AnimationBuilder
Updated ১৩ এপ্রিল, ২০২৩
Using layer based animations in Views can improve performance and reduce jankiness, but they're rather difficult to set up. The AnimationBuilder classes can vastly reduce complexity and improve readability for layer animations. Suppose you needed to
- ব্লগ
- C++
- Chrome
The Chromium Chronicle #32: Mind the patch gap
Updated ৩ ফেব্রুয়ারী, ২০২৩
Learn how Chromium developers can reduce the chance of n-day exploitation.
- ব্লগ
- Chrome
The Chromium Chronicle #28: Getting started with Chrome on iOS
Updated ১ ফেব্রুয়ারী, ২০২২
Learn how to work with the code behind Chrome's iOS app.
- ব্লগ
- Chrome
The Chromium Chronicle #25: Thread Safety Annotations
Updated ৪ অক্টোবর, ২০২১
Learn how Clang's static analysis framework takes over the toil of thread-safety proofs.
- ব্লগ
- C++
- Chrome
The Chromium Chronicle #24: StrongAlias, IdType, and TokenType
Updated ২৬ আগস্ট, ২০২১
The same type may sometimes represent values from incompatible domains, which can cause bugs. Fortunately, Chromium's //base makes it easy to introduce explicit, distinct types.
- ব্লগ
- C++
- Chrome
The Chromium Chronicle #23: Verified builds in Chrome Infra
Updated ২৮ জুলাই, ২০২১
Implementing a policy enforcement check for Chrome and the infrastructure has enabled us to verify that certain minimum standards for security are met.
- ব্লগ
- Python
- Chrome
The Chromium Chronicle #22: Know Thy (Depot) Tools
Updated ২৮ জুন, ২০২১
Depot Tools is a collection of tools built on top of Git to simplify the workflow of developers contributing to the Chromium codebase and related projects.
- ব্লগ
- Chrome
The Chromium Chronicle #21: ChromeOS End-to-end UI Automation
Updated ২৭ মে, ২০২১
Tast is a new UI library has been created that uses the Chrome a11y (accessibility) tree to control the ChromeOS UI. The library enables developers to easily create End-to-end tests against any visible UI surface.
- A11y
- ব্লগ
- Go
- Chrome
The Chromium Chronicle #20: Benchmarking Test Harnesses
Updated ৩০ এপ্রিল, ২০২১
Adding benchmarks is an easy way to prevent performance regressions and help improve performance.
- ব্লগ
- Chrome