summaryrefslogtreecommitdiffstats
path: root/mojo/shell/public
diff options
context:
space:
mode:
authoramistry <amistry@chromium.org>2016-03-02 16:26:11 -0800
committerCommit bot <commit-bot@chromium.org>2016-03-03 00:27:32 +0000
commit432564c6ecff52ab735bdc35adcf537d89b13589 (patch)
treebf35938fa14739903da55a1369a7a96d223a335b /mojo/shell/public
parentb9dd98ce23a6dab545c18a21eca0783f4597b081 (diff)
downloadchromium_src-432564c6ecff52ab735bdc35adcf537d89b13589.zip
chromium_src-432564c6ecff52ab735bdc35adcf537d89b13589.tar.gz
chromium_src-432564c6ecff52ab735bdc35adcf537d89b13589.tar.bz2
Remove MOJO_DISALLOW_COPY_AND_ASSIGN and MOJO_ALLOW_UNUSED_LOCAL.
BUG=534695 Review URL: https://codereview.chromium.org/1755003002 Cr-Commit-Position: refs/heads/master@{#378891}
Diffstat (limited to 'mojo/shell/public')
-rw-r--r--mojo/shell/public/cpp/application_runner.h2
-rw-r--r--mojo/shell/public/cpp/application_test_base.h4
-rw-r--r--mojo/shell/public/cpp/lib/connection_impl.h2
-rw-r--r--mojo/shell/public/cpp/lib/interface_factory_binder.h2
-rw-r--r--mojo/shell/public/cpp/shell_client.h2
-rw-r--r--mojo/shell/public/cpp/shell_connection.h2
6 files changed, 7 insertions, 7 deletions
diff --git a/mojo/shell/public/cpp/application_runner.h b/mojo/shell/public/cpp/application_runner.h
index c9b2baa..192d532 100644
--- a/mojo/shell/public/cpp/application_runner.h
+++ b/mojo/shell/public/cpp/application_runner.h
@@ -55,7 +55,7 @@ class ApplicationRunner {
// Whether Run() has been called.
bool has_run_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationRunner);
+ DISALLOW_COPY_AND_ASSIGN(ApplicationRunner);
};
} // namespace mojo
diff --git a/mojo/shell/public/cpp/application_test_base.h b/mojo/shell/public/cpp/application_test_base.h
index 764770a..91160df 100644
--- a/mojo/shell/public/cpp/application_test_base.h
+++ b/mojo/shell/public/cpp/application_test_base.h
@@ -49,7 +49,7 @@ class TestHelper {
uint32_t instance_id_;
uint32_t userid_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(TestHelper);
+ DISALLOW_COPY_AND_ASSIGN(TestHelper);
};
// A GTEST base class for application testing executed in mojo_shell.
@@ -89,7 +89,7 @@ class ApplicationTestBase : public testing::Test {
private:
scoped_ptr<TestHelper> test_helper_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(ApplicationTestBase);
+ DISALLOW_COPY_AND_ASSIGN(ApplicationTestBase);
};
} // namespace test
diff --git a/mojo/shell/public/cpp/lib/connection_impl.h b/mojo/shell/public/cpp/lib/connection_impl.h
index 0e761c0..74140ff 100644
--- a/mojo/shell/public/cpp/lib/connection_impl.h
+++ b/mojo/shell/public/cpp/lib/connection_impl.h
@@ -71,7 +71,7 @@ class ConnectionImpl : public Connection {
base::WeakPtrFactory<ConnectionImpl> weak_factory_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(ConnectionImpl);
+ DISALLOW_COPY_AND_ASSIGN(ConnectionImpl);
};
} // namespace internal
diff --git a/mojo/shell/public/cpp/lib/interface_factory_binder.h b/mojo/shell/public/cpp/lib/interface_factory_binder.h
index 39b98c7..e4f6815 100644
--- a/mojo/shell/public/cpp/lib/interface_factory_binder.h
+++ b/mojo/shell/public/cpp/lib/interface_factory_binder.h
@@ -30,7 +30,7 @@ class InterfaceFactoryBinder : public InterfaceBinder {
private:
InterfaceFactory<Interface>* factory_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryBinder);
+ DISALLOW_COPY_AND_ASSIGN(InterfaceFactoryBinder);
};
} // namespace internal
diff --git a/mojo/shell/public/cpp/shell_client.h b/mojo/shell/public/cpp/shell_client.h
index a95f8cf..2eb9079 100644
--- a/mojo/shell/public/cpp/shell_client.h
+++ b/mojo/shell/public/cpp/shell_client.h
@@ -49,7 +49,7 @@ class ShellClient {
virtual bool ShellConnectionLost();
private:
- MOJO_DISALLOW_COPY_AND_ASSIGN(ShellClient);
+ DISALLOW_COPY_AND_ASSIGN(ShellClient);
};
} // namespace mojo
diff --git a/mojo/shell/public/cpp/shell_connection.h b/mojo/shell/public/cpp/shell_connection.h
index 868f89d..07dc39d 100644
--- a/mojo/shell/public/cpp/shell_connection.h
+++ b/mojo/shell/public/cpp/shell_connection.h
@@ -81,7 +81,7 @@ class ShellConnection : public shell::mojom::ShellClient {
scoped_ptr<Connector> connector_;
base::WeakPtrFactory<ShellConnection> weak_factory_;
- MOJO_DISALLOW_COPY_AND_ASSIGN(ShellConnection);
+ DISALLOW_COPY_AND_ASSIGN(ShellConnection);
};
} // namespace mojo