| Index: extensions/browser/api/app_window/app_window_api.cc
|
| diff --git a/extensions/browser/api/app_window/app_window_api.cc b/extensions/browser/api/app_window/app_window_api.cc
|
| index e92e7e7f659ecd0b5430033481aafe7020d6f6ea..2d367a02a4d904209729abcf973557d83001ec04 100644
|
| --- a/extensions/browser/api/app_window/app_window_api.cc
|
| +++ b/extensions/browser/api/app_window/app_window_api.cc
|
| @@ -198,7 +198,7 @@ bool AppWindowCreateFunction::RunAsync() {
|
|
|
| std::unique_ptr<base::DictionaryValue> result(
|
| new base::DictionaryValue);
|
| - result->Set("frameId", new base::FundamentalValue(frame_id));
|
| + result->Set("frameId", new base::Value(frame_id));
|
| existing_window->GetSerializedState(result.get());
|
| result->SetBoolean("existingWindow", true);
|
| SetResult(std::move(result));
|
| @@ -381,7 +381,7 @@ bool AppWindowCreateFunction::RunAsync() {
|
| frame_id = created_frame->GetRoutingID();
|
|
|
| std::unique_ptr<base::DictionaryValue> result(new base::DictionaryValue);
|
| - result->Set("frameId", new base::FundamentalValue(frame_id));
|
| + result->Set("frameId", new base::Value(frame_id));
|
| result->Set("id", new base::StringValue(app_window->window_key()));
|
| app_window->GetSerializedState(result.get());
|
| SetResult(std::move(result));
|
|
|