Skip to content

Commit

Permalink
chore: shorter class name
Browse files Browse the repository at this point in the history
  • Loading branch information
zcbenz authored and electron-bot committed Jan 14, 2020
1 parent 5418580 commit 047158b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shell/browser/api/atom_api_url_loader.cc
Expand Up @@ -36,10 +36,10 @@
namespace gin {

template <>
struct Converter<mojo::InlinedStructPtr<network::mojom::HttpRawHeaderPair>> {
struct Converter<network::mojom::HttpRawHeaderPairPtr> {
static v8::Local<v8::Value> ToV8(
v8::Isolate* isolate,
const mojo::InlinedStructPtr<network::mojom::HttpRawHeaderPair>& pair) {
const network::mojom::HttpRawHeaderPairPtr& pair) {
gin_helper::Dictionary dict = gin::Dictionary::CreateEmpty(isolate);
dict.Set("key", base::ToLowerASCII(pair->key));
dict.Set("value", pair->value);
Expand Down

0 comments on commit 047158b

Please sign in to comment.