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

Side by Side Diff: chrome/renderer/chrome_content_renderer_client_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 "chrome/renderer/chrome_content_renderer_client.h" 5 #include "chrome/renderer/chrome_content_renderer_client.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/strings/utf_string_conversions.h" 9 #include "base/strings/utf_string_conversions.h"
10 #include "chrome/common/extensions/extension.h"
11 #include "chrome/renderer/searchbox/search_bouncer.h" 10 #include "chrome/renderer/searchbox/search_bouncer.h"
12 #include "content/public/common/webplugininfo.h" 11 #include "content/public/common/webplugininfo.h"
12 #include "extensions/common/extension.h"
13 #include "extensions/common/extension_builder.h" 13 #include "extensions/common/extension_builder.h"
14 #include "extensions/common/manifest_constants.h" 14 #include "extensions/common/manifest_constants.h"
15 #include "testing/gtest/include/gtest/gtest.h" 15 #include "testing/gtest/include/gtest/gtest.h"
16 #include "third_party/WebKit/public/platform/WebString.h" 16 #include "third_party/WebKit/public/platform/WebString.h"
17 #include "third_party/WebKit/public/platform/WebVector.h" 17 #include "third_party/WebKit/public/platform/WebVector.h"
18 #include "third_party/WebKit/public/web/WebPluginParams.h" 18 #include "third_party/WebKit/public/web/WebPluginParams.h"
19 #include "url/gurl.h" 19 #include "url/gurl.h"
20 20
21 using blink::WebPluginParams; 21 using blink::WebPluginParams;
22 using blink::WebString; 22 using blink::WebString;
(...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 } 379 }
380 380
381 TEST_F(ChromeContentRendererClientTest, ShouldSuppressErrorPage) { 381 TEST_F(ChromeContentRendererClientTest, ShouldSuppressErrorPage) {
382 ChromeContentRendererClient client; 382 ChromeContentRendererClient client;
383 client.search_bouncer_.reset(new SearchBouncer); 383 client.search_bouncer_.reset(new SearchBouncer);
384 client.search_bouncer_->OnSetSearchURLs( 384 client.search_bouncer_->OnSetSearchURLs(
385 std::vector<GURL>(), GURL("http://example.com/n")); 385 std::vector<GURL>(), GURL("http://example.com/n"));
386 EXPECT_FALSE(client.ShouldSuppressErrorPage(GURL("http://example.com"))); 386 EXPECT_FALSE(client.ShouldSuppressErrorPage(GURL("http://example.com")));
387 EXPECT_TRUE(client.ShouldSuppressErrorPage(GURL("http://example.com/n"))); 387 EXPECT_TRUE(client.ShouldSuppressErrorPage(GURL("http://example.com/n")));
388 } 388 }
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_content_renderer_client.cc ('k') | chrome/renderer/extensions/chrome_v8_context.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698