fix: modernize-avoid-c-arrays (#44834)
use string_view for constants used in methods that take string_view args Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr <charles@charleskerr.com>
This commit is contained in:
parent
d8a7c57506
commit
5a0e1ccf73
11 changed files with 69 additions and 62 deletions
|
@ -5,6 +5,7 @@
|
|||
#include "electron/shell/renderer/electron_api_service_impl.h"
|
||||
|
||||
#include <memory>
|
||||
#include <string_view>
|
||||
#include <tuple>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
@ -32,7 +33,7 @@ namespace electron {
|
|||
|
||||
namespace {
|
||||
|
||||
const char kIpcKey[] = "ipcNative";
|
||||
constexpr std::string_view kIpcKey = "ipcNative";
|
||||
|
||||
// Gets the private object under kIpcKey
|
||||
v8::Local<v8::Object> GetIpcObject(v8::Local<v8::Context> context) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue