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

Unified Diff: chrome/common/extensions/event_filtering_info.cc

Issue 12208078: Move chrome/common/extensions/event_* to extensions/common/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: v8 Created 7 years, 10 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/extensions/event_filtering_info.h ('k') | chrome/common/extensions/event_matcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/common/extensions/event_filtering_info.cc
diff --git a/chrome/common/extensions/event_filtering_info.cc b/chrome/common/extensions/event_filtering_info.cc
deleted file mode 100644
index 1e30283df5269e7e7b0474e3fc93b42f4f150aa4..0000000000000000000000000000000000000000
--- a/chrome/common/extensions/event_filtering_info.cc
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "chrome/common/extensions/event_filtering_info.h"
-
-#include "base/values.h"
-#include "base/json/json_writer.h"
-
-namespace extensions {
-
-EventFilteringInfo::EventFilteringInfo()
- : has_url_(false) {
-}
-
-EventFilteringInfo::~EventFilteringInfo() {
-}
-
-void EventFilteringInfo::SetURL(const GURL& url) {
- url_ = url;
- has_url_ = true;
-}
-
-std::string EventFilteringInfo::AsJSONString() const {
- std::string result;
- base::DictionaryValue value;
- if (has_url_)
- value.SetString("url", url_.spec());
-
- base::JSONWriter::Write(&value, &result);
- return result;
-}
-
-scoped_ptr<base::Value> EventFilteringInfo::AsValue() const {
- if (IsEmpty())
- return scoped_ptr<base::Value>(base::Value::CreateNullValue());
-
- scoped_ptr<base::DictionaryValue> result(new base::DictionaryValue);
- if (has_url_)
- result->SetString("url", url_.spec());
- return result.PassAs<base::Value>();
-}
-
-bool EventFilteringInfo::IsEmpty() const {
- return !has_url_;
-}
-
-} // namespace extensions
« no previous file with comments | « chrome/common/extensions/event_filtering_info.h ('k') | chrome/common/extensions/event_matcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698