Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: chrome/renderer/extensions/chrome_v8_context_set_unittest.cc

Issue 15239002: Move Extension and PermissionsData to extensions/common. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/message_loop/message_loop.h" 5 #include "base/message_loop/message_loop.h"
6 #include "chrome/common/extensions/extension.h"
7 #include "chrome/renderer/extensions/chrome_v8_context.h" 6 #include "chrome/renderer/extensions/chrome_v8_context.h"
8 #include "chrome/renderer/extensions/chrome_v8_context_set.h" 7 #include "chrome/renderer/extensions/chrome_v8_context_set.h"
8 #include "extensions/common/extension.h"
9 #include "extensions/common/features/feature.h" 9 #include "extensions/common/features/feature.h"
10 #include "testing/gtest/include/gtest/gtest.h" 10 #include "testing/gtest/include/gtest/gtest.h"
11 #include "third_party/WebKit/public/web/WebFrame.h" 11 #include "third_party/WebKit/public/web/WebFrame.h"
12 #include "v8/include/v8.h" 12 #include "v8/include/v8.h"
13 13
14 namespace extensions { 14 namespace extensions {
15 15
16 TEST(ChromeV8ContextSet, Lifecycle) { 16 TEST(ChromeV8ContextSet, Lifecycle) {
17 base::MessageLoop loop; 17 base::MessageLoop loop;
18 18
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 EXPECT_EQ(1u, set_copy.size()); 50 EXPECT_EQ(1u, set_copy.size());
51 51
52 // After removal, the context should be marked for destruction. 52 // After removal, the context should be marked for destruction.
53 EXPECT_FALSE(context->web_frame()); 53 EXPECT_FALSE(context->web_frame());
54 54
55 // Run loop to do the actual deletion. 55 // Run loop to do the actual deletion.
56 loop.RunUntilIdle(); 56 loop.RunUntilIdle();
57 } 57 }
58 58
59 } // namespace extensions 59 } // namespace extensions
OLDNEW
« no previous file with comments | « chrome/renderer/extensions/chrome_v8_context_set.cc ('k') | chrome/renderer/extensions/chrome_v8_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698