aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-11 18:33:31 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-04-11 18:33:31 +0000
commitc4b21e6c03a6cdb03e116b9f510eb10cf8daedb1 (patch)
treeef33ea7b55761ea303ccecc2ab4bd621a5f5a414
parent540b97d3e7fd3433d3cf3308f476ec30922c11cc (diff)
Mark our territory with (C).
BUG=skia: R=reed@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/235253002 git-svn-id: http://skia.googlecode.com/svn/trunk@14158 2bbb7eff-a529-9590-31e7-b0007b416f81
-rw-r--r--include/record/SkRecording.h7
-rw-r--r--src/record/SkRecord.h7
-rw-r--r--src/record/SkRecordCulling.cpp7
-rw-r--r--src/record/SkRecordCulling.h7
-rw-r--r--src/record/SkRecordDraw.cpp7
-rw-r--r--src/record/SkRecordDraw.h7
-rw-r--r--src/record/SkRecorder.cpp7
-rw-r--r--src/record/SkRecorder.h7
-rw-r--r--src/record/SkRecording.cpp7
-rw-r--r--src/record/SkRecords.h7
-rw-r--r--tests/RecordCullingTest.cpp7
-rw-r--r--tests/RecordDrawTest.cpp7
-rw-r--r--tests/RecordTest.cpp7
-rw-r--r--tests/RecorderTest.cpp7
-rw-r--r--tests/RecordingTest.cpp7
15 files changed, 105 insertions, 0 deletions
diff --git a/include/record/SkRecording.h b/include/record/SkRecording.h
index 7024e17469..13b4013797 100644
--- a/include/record/SkRecording.h
+++ b/include/record/SkRecording.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecording_DEFINED
#define SkRecording_DEFINED
diff --git a/src/record/SkRecord.h b/src/record/SkRecord.h
index 0fe79189d4..4c2f5b5ed4 100644
--- a/src/record/SkRecord.h
+++ b/src/record/SkRecord.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecord_DEFINED
#define SkRecord_DEFINED
diff --git a/src/record/SkRecordCulling.cpp b/src/record/SkRecordCulling.cpp
index e866bd82cb..f147ee6683 100644
--- a/src/record/SkRecordCulling.cpp
+++ b/src/record/SkRecordCulling.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "SkRecordCulling.h"
#include "SkRecords.h"
diff --git a/src/record/SkRecordCulling.h b/src/record/SkRecordCulling.h
index b8ed88c637..60420f223c 100644
--- a/src/record/SkRecordCulling.h
+++ b/src/record/SkRecordCulling.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecordCulling_DEFINED
#define SkRecordCulling_DEFINED
diff --git a/src/record/SkRecordDraw.cpp b/src/record/SkRecordDraw.cpp
index ddde2fede8..27eb7ae595 100644
--- a/src/record/SkRecordDraw.cpp
+++ b/src/record/SkRecordDraw.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "SkRecordDraw.h"
namespace {
diff --git a/src/record/SkRecordDraw.h b/src/record/SkRecordDraw.h
index 684cc1b2e5..8bf0e6694a 100644
--- a/src/record/SkRecordDraw.h
+++ b/src/record/SkRecordDraw.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecordDraw_DEFINED
#define SkRecordDraw_DEFINED
diff --git a/src/record/SkRecorder.cpp b/src/record/SkRecorder.cpp
index 0867d98846..aff6609cf9 100644
--- a/src/record/SkRecorder.cpp
+++ b/src/record/SkRecorder.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "SkRecorder.h"
#include "SkPicture.h"
diff --git a/src/record/SkRecorder.h b/src/record/SkRecorder.h
index 0f2162f917..24a842cdf3 100644
--- a/src/record/SkRecorder.h
+++ b/src/record/SkRecorder.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecorder_DEFINED
#define SkRecorder_DEFINED
diff --git a/src/record/SkRecording.cpp b/src/record/SkRecording.cpp
index 5d48bca513..290339d16b 100644
--- a/src/record/SkRecording.cpp
+++ b/src/record/SkRecording.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "SkRecording.h"
#include "SkRecord.h"
diff --git a/src/record/SkRecords.h b/src/record/SkRecords.h
index 961728af41..7958280e48 100644
--- a/src/record/SkRecords.h
+++ b/src/record/SkRecords.h
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#ifndef SkRecords_DEFINED
#define SkRecords_DEFINED
diff --git a/tests/RecordCullingTest.cpp b/tests/RecordCullingTest.cpp
index c6fe10e07b..bf1ca258b7 100644
--- a/tests/RecordCullingTest.cpp
+++ b/tests/RecordCullingTest.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "Test.h"
#include "SkRecord.h"
diff --git a/tests/RecordDrawTest.cpp b/tests/RecordDrawTest.cpp
index 98ec506b1e..ccd7c3d6c2 100644
--- a/tests/RecordDrawTest.cpp
+++ b/tests/RecordDrawTest.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "Test.h"
#include "SkDebugCanvas.h"
diff --git a/tests/RecordTest.cpp b/tests/RecordTest.cpp
index 58e5de106c..315f15b700 100644
--- a/tests/RecordTest.cpp
+++ b/tests/RecordTest.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "Test.h"
#include "SkRecord.h"
diff --git a/tests/RecorderTest.cpp b/tests/RecorderTest.cpp
index 1c116beb12..34b3f2c0de 100644
--- a/tests/RecorderTest.cpp
+++ b/tests/RecorderTest.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "Test.h"
#include "SkRecord.h"
diff --git a/tests/RecordingTest.cpp b/tests/RecordingTest.cpp
index e8cdb71c6a..7d1dbf1a44 100644
--- a/tests/RecordingTest.cpp
+++ b/tests/RecordingTest.cpp
@@ -1,3 +1,10 @@
+/*
+ * Copyright 2014 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
#include "Test.h"
#include "SkRecording.h"