| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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/memory/ref_counted_memory.h" | 5 #include "base/memory/ref_counted_memory.h" |
| 6 #include "chrome/browser/profiles/profile.h" | 6 #include "chrome/browser/profiles/profile.h" |
| 7 #include "chrome/browser/ui/webui/theme_source.h" | 7 #include "chrome/browser/ui/webui/theme_source.h" |
| 8 #include "chrome/common/url_constants.h" | 8 #include "chrome/common/url_constants.h" |
| 9 #include "chrome/test/testing_profile.h" | 9 #include "chrome/test/testing_profile.h" |
| 10 #include "content/browser/browser_thread.h" | 10 #include "content/browser/browser_thread.h" |
| 11 #include "grit/theme_resources.h" | 11 #include "grit/theme_resources.h" |
| 12 #include "grit/theme_resources_standard.h" |
| 12 #include "testing/gtest/include/gtest/gtest.h" | 13 #include "testing/gtest/include/gtest/gtest.h" |
| 13 | 14 |
| 14 // A mock ThemeSource (so we can override SendResponse to get at its data). | 15 // A mock ThemeSource (so we can override SendResponse to get at its data). |
| 15 class MockThemeSource : public ThemeSource { | 16 class MockThemeSource : public ThemeSource { |
| 16 public: | 17 public: |
| 17 explicit MockThemeSource(Profile* profile) | 18 explicit MockThemeSource(Profile* profile) |
| 18 : ThemeSource(profile), | 19 : ThemeSource(profile), |
| 19 result_request_id_(-1), | 20 result_request_id_(-1), |
| 20 result_data_size_(0) { | 21 result_data_size_(0) { |
| 21 } | 22 } |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 | 90 |
| 90 theme_source()->StartDataRequest("css/newtab.css?pie", false, 3); | 91 theme_source()->StartDataRequest("css/newtab.css?pie", false, 3); |
| 91 EXPECT_EQ(theme_source()->result_request_id_, 3); | 92 EXPECT_EQ(theme_source()->result_request_id_, 3); |
| 92 EXPECT_NE(theme_source()->result_data_size_, empty_size); | 93 EXPECT_NE(theme_source()->result_data_size_, empty_size); |
| 93 | 94 |
| 94 // Check that we send NULL back when we can't find what we're looking for. | 95 // Check that we send NULL back when we can't find what we're looking for. |
| 95 theme_source()->StartDataRequest("css/WRONGURL", false, 7); | 96 theme_source()->StartDataRequest("css/WRONGURL", false, 7); |
| 96 EXPECT_EQ(theme_source()->result_request_id_, 7); | 97 EXPECT_EQ(theme_source()->result_request_id_, 7); |
| 97 EXPECT_EQ(theme_source()->result_data_size_, empty_size); | 98 EXPECT_EQ(theme_source()->result_data_size_, empty_size); |
| 98 } | 99 } |
| OLD | NEW |