13
13
#include < utility>
14
14
#include < vector>
15
15
16
+ #include " base/base64.h"
16
17
#include " base/containers/contains.h"
17
18
#include " base/containers/fixed_flat_map.h"
18
19
#include " base/containers/id_map.h"
@@ -600,12 +601,25 @@ base::Value::Dict CreateFileSystemValue(const FileSystem& file_system) {
600
601
return value;
601
602
}
602
603
603
- void WriteToFile (const base::FilePath& path, const std::string& content) {
604
+ void WriteToFile (const base::FilePath& path,
605
+ const std::string& content,
606
+ bool is_base64) {
604
607
base::ScopedBlockingCall scoped_blocking_call (FROM_HERE,
605
608
base::BlockingType::WILL_BLOCK);
606
609
DCHECK (!path.empty ());
607
610
608
- base::WriteFile (path, content.data (), content.size ());
611
+ if (!is_base64) {
612
+ base::WriteFile (path, content);
613
+ return ;
614
+ }
615
+
616
+ const std::optional<std::vector<uint8_t >> decoded_content =
617
+ base::Base64Decode (content);
618
+ if (decoded_content) {
619
+ base::WriteFile (path, decoded_content.value ());
620
+ } else {
621
+ LOG (ERROR) << " Invalid base64. Not writing " << path;
622
+ }
609
623
}
610
624
611
625
void AppendToFile (const base::FilePath& path, const std::string& content) {
@@ -3919,7 +3933,8 @@ void WebContents::ExitPictureInPicture() {
3919
3933
3920
3934
void WebContents::DevToolsSaveToFile (const std::string& url,
3921
3935
const std::string& content,
3922
- bool save_as) {
3936
+ bool save_as,
3937
+ bool is_base64) {
3923
3938
base::FilePath path;
3924
3939
auto it = saved_files_.find (url);
3925
3940
if (it != saved_files_.end () && !save_as) {
@@ -3942,8 +3957,8 @@ void WebContents::DevToolsSaveToFile(const std::string& url,
3942
3957
inspectable_web_contents_->CallClientFunction (
3943
3958
" DevToolsAPI" , " savedURL" , base::Value (url),
3944
3959
base::Value (path.AsUTF8Unsafe ()));
3945
- file_task_runner_->PostTask (FROM_HERE,
3946
- base::BindOnce (&WriteToFile, path, content));
3960
+ file_task_runner_->PostTask (
3961
+ FROM_HERE, base::BindOnce (&WriteToFile, path, content, is_base64 ));
3947
3962
}
3948
3963
3949
3964
void WebContents::DevToolsAppendToFile (const std::string& url,
0 commit comments