| Index: chrome/test/data/extensions/api_test/content_scripts/duplicate_script_injection/should_run_once.js
|
| diff --git a/blimp/common/blob_cache/mock_blob_cache.cc b/chrome/test/data/extensions/api_test/content_scripts/duplicate_script_injection/should_run_once.js
|
| similarity index 50%
|
| copy from blimp/common/blob_cache/mock_blob_cache.cc
|
| copy to chrome/test/data/extensions/api_test/content_scripts/duplicate_script_injection/should_run_once.js
|
| index 4cf10522588b680929bcbe0a751f6e8dbff32b4f..081cb22bdb964bccc2b5a47c056721faa48b4e36 100644
|
| --- a/blimp/common/blob_cache/mock_blob_cache.cc
|
| +++ b/chrome/test/data/extensions/api_test/content_scripts/duplicate_script_injection/should_run_once.js
|
| @@ -2,12 +2,6 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "blimp/common/blob_cache/mock_blob_cache.h"
|
| -
|
| -namespace blimp {
|
| -
|
| -MockBlobCache::MockBlobCache() {}
|
| -
|
| -MockBlobCache::~MockBlobCache() {}
|
| -
|
| -} // namespace blimp
|
| +var should_be_injected_once = document.createElement('div');
|
| +should_be_injected_once.className = 'injected-once';
|
| +document.body.appendChild(should_be_injected_once);
|
|
|